Security Vulnerability Report
中文
CVE-2026-8090 CVSS 7.3 HIGH

CVE-2026-8090

Published: 2026-05-07 13:16:14
Last Modified: 2026-05-08 20:08:50

Description

Use-after-free in the DOM: Networking component. This vulnerability was fixed in Firefox 150.0.2, Firefox ESR 140.10.2, Firefox ESR 115.35.2, Thunderbird 150.0.2, and Thunderbird 140.10.2.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:mozilla:firefox:*:*:*:*:esr:*:*:* - VULNERABLE
cpe:2.3:a:mozilla:firefox:*:*:*:*:-:*:*:* - VULNERABLE
cpe:2.3:a:mozilla:firefox:*:*:*:*:esr:*:*:* - VULNERABLE
cpe:2.3:a:mozilla:thunderbird:*:*:*:*:esr:*:*:* - VULNERABLE
cpe:2.3:a:mozilla:thunderbird:*:*:*:*:-:*:*:* - VULNERABLE
Firefox < 150.0.2
Firefox ESR < 140.10.2
Firefox ESR < 115.35.2
Thunderbird < 150.0.2
Thunderbird < 140.10.2

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-8090 --> <!-- Conceptual Use-after-free simulation --> <html> <body> <script> // Step 1: Create a DOM element related to networking let target = document.createElement('div'); document.body.appendChild(target); // Step 2: Setup a listener or reference let ref = target; // Step 3: Trigger free operation (simulating the bug condition) function triggerFree() { document.body.removeChild(target); // In a real scenario, the underlying object is freed here // but 'ref' might still point to the memory. } // Step 4: Attempt to reuse the freed memory function triggerUse() { try { // This access attempts to read/write the freed memory ref.innerHTML = "<img src=x onerror=alert(1)>"; console.log("Potential UAF triggered"); } catch(e) { console.log("Access failed"); } } triggerFree(); setTimeout(triggerUse, 100); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8090", "sourceIdentifier": "[email protected]", "published": "2026-05-07T13:16:13.967", "lastModified": "2026-05-08T20:08:50.323", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Use-after-free in the DOM: Networking component. This vulnerability was fixed in Firefox 150.0.2, Firefox ESR 140.10.2, Firefox ESR 115.35.2, Thunderbird 150.0.2, and Thunderbird 140.10.2."}], "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:L/I:L/A:L", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 3.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-416"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:firefox:*:*:*:*:esr:*:*:*", "versionEndExcluding": "115.35.2", "matchCriteriaId": "AF96A878-0508-42AF-A345-ACBC2FE28DD2"}, {"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:firefox:*:*:*:*:-:*:*:*", "versionEndExcluding": "150.0.2", "matchCriteriaId": "90FD21D5-E709-49DF-9D27-322BF44BFB9F"}, {"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:firefox:*:*:*:*:esr:*:*:*", "versionStartIncluding": "128.0", "versionEndExcluding": "140.10.2", "matchCriteriaId": "3E67E76C-55A4-4629-9757-180EF8A460FD"}, {"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:thunderbird:*:*:*:*:esr:*:*:*", "versionEndExcluding": "140.10.2", "matchCriteriaId": "9A079C1F-6657-44CD-BD8F-59BE280C9E44"}, {"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:thunderbird:*:*:*:*:-:*:*:*", "versionEndExcluding": "150.0.2", "matchCriteriaId": "8D11BFD0-1B38-4787-A7BC-53368D1C91B7"}]}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2034352", "source": "[email protected]", "tags": ["Permissions Required"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-40/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-41/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-42/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-43/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-44/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}