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

CVE-2026-8954

Published: 2026-05-19 14:16:52
Last Modified: 2026-05-19 15:16:35

Description

Incorrect boundary conditions, integer overflow in the Audio/Video component. This vulnerability was fixed in Firefox 151 and Firefox ESR 140.11.

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)

No configuration data available.

Firefox < 151
Firefox ESR < 140.11

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-8954 Description: HTML snippet attempting to trigger integer overflow in Firefox Audio component. Note: This requires a crafted media file to function. --> <!DOCTYPE html> <html> <head> <title>CVE-2026-8954 PoC</title> </head> <body> <h1>Firefox Audio Component Integer Overflow PoC</h1> <!-- Embed a crafted audio file designed to trigger the boundary check failure --> <audio id="targetAudio" controls autoplay> <source src="crafted_overflow.mp3" type="audio/mpeg"> Your browser does not support the audio element. </audio> <script> // Monitor for potential crashes or unusual behavior indicating exploitation window.addEventListener('error', function(e) { console.log("Error detected: " + e.message); }); var audio = document.getElementById('targetAudio'); audio.play().catch(e => console.log("Play failed (interaction required or error): " + e)); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8954", "sourceIdentifier": "[email protected]", "published": "2026-05-19T14:16:51.700", "lastModified": "2026-05-19T15:16:34.573", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect boundary conditions, integer overflow in the Audio/Video component. This vulnerability was fixed in Firefox 151 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: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-119"}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2030747", "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]"}]}}