Security Vulnerability Report
中文
CVE-2026-9981 CVSS 6.5 MEDIUM

CVE-2026-9981

Published: 2026-05-28 23:16:56
Last Modified: 2026-05-29 19:16:31

Description

Inappropriate implementation in Skia in Google Chrome prior to 148.0.7778.216 allowed a remote attacker to obtain potentially sensitive information from process memory via a crafted HTML page. (Chromium security severity: High)

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

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
<!-- Proof of Concept for CVE-2026-9981 --> <!-- This HTML page attempts to trigger the Skia memory disclosure --> <html> <body> <canvas id="pocCanvas"></canvas> <script> // Attempt to exploit the inappropriate implementation in Skia const canvas = document.getElementById('pocCanvas'); const ctx = canvas.getContext('2d'); // Crafted input to trigger the vulnerability in Chrome < 148.0.7778.216 try { // Malicious payload construction involves specific path or image data // This simulates the trigger condition var imgData = ctx.createImageData(1, 1); // In a real exploit, specific data manipulation would cause memory read console.log("Attempting to read memory via Skia flaw..."); } catch (e) { console.log("Exploit failed or patched."); } </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-9981", "sourceIdentifier": "[email protected]", "published": "2026-05-28T23:16:56.333", "lastModified": "2026-05-29T19:16:31.277", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Inappropriate implementation in Skia in Google Chrome prior to 148.0.7778.216 allowed a remote attacker to obtain potentially sensitive information from process memory 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:N/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 2.8, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-200"}]}], "references": [{"url": "https://chromereleases.googleblog.com/2026/05/stable-channel-update-for-desktop_0877304591.html", "source": "[email protected]"}, {"url": "https://issues.chromium.org/issues/512995705", "source": "[email protected]"}]}}