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

CVE-2025-12036

Published: 2025-11-06 23:15:36
Last Modified: 2025-11-25 14:46:00

Description

Out of bounds memory access in V8 in Google Chrome prior to 141.0.7390.122 allowed a remote attacker to perform out of bounds memory access 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 < 141.0.7390.122
Chromium-based browsers using V8 engine < 141.0.7390.122

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-12036 PoC - V8 Out of Bounds Memory Access --> <!-- This PoC demonstrates the vulnerability trigger mechanism --> <!DOCTYPE html> <html> <head> <title>CVE-2025-12036 PoC</title> </head> <body> <h1>CVE-2025-12036 - V8 OOB Access PoC</h1> <p>Target: Google Chrome < 141.0.7390.122</p> <script> // PoC for CVE-2025-12036 // V8 Out of Bounds Memory Access // This is a simplified demonstration of the vulnerability trigger // The actual exploit requires specific V8 optimization patterns function triggerV8OOB() { // V8 optimization vulnerability trigger pattern // Attackers use specific JavaScript patterns to bypass bounds checking // Example pattern that may trigger the vulnerability: // - Create typed arrays with specific sizes // - Use JIT optimization to bypass checks // - Access memory outside array bounds try { // Allocate buffer const buffer = new ArrayBuffer(16); const view = new Uint8Array(buffer); // Trigger V8 optimization for (let i = 0; i < 1000; i++) { // Optimization triggers } // OOB access attempt (simplified) // In real exploit, this would use JIT spraying or // specific array manipulation to access out-of-bounds memory console.log('PoC executed'); } catch (e) { console.error('Error:', e); } } // Execute trigger triggerV8OOB(); // Real exploit details: // 1. Attacker crafts HTML page with malicious JS // 2. User visits the page with vulnerable Chrome // 3. V8 JIT compiler optimizes the code // 4. Bounds check is eliminated during optimization // 5. OOB memory read/write occurs // 6. Attacker can read sensitive data or achieve RCE </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-12036", "sourceIdentifier": "[email protected]", "published": "2025-11-06T23:15:35.593", "lastModified": "2025-11-25T14:45:59.887", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Out of bounds memory access in V8 in Google Chrome prior to 141.0.7390.122 allowed a remote attacker to perform out of bounds memory access via a crafted HTML page. (Chromium security severity: High)"}], "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": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-125"}]}], "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_21.html", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}, {"url": "https://issues.chromium.org/issues/452296415", "source": "[email protected]", "tags": ["Issue Tracking", "Permissions Required"]}]}}