Security Vulnerability Report
中文
CVE-2026-8554 CVSS 3.1 LOW

CVE-2026-8554

Published: 2026-05-14 20:17:17
Last Modified: 2026-05-15 15:16:55

Description

Type Confusion in ANGLE in Google Chrome on Windows prior to 148.0.7778.168 allowed a remote attacker who had compromised the renderer process to perform an out of bounds memory write via a crafted HTML page. (Chromium security severity: High)

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Google Chrome < 148.0.7778.168 (Windows)

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-8554 --> <!-- This POC demonstrates the setup for ANGLE Type Confusion --> <html> <head> <title>CVE-2026-8554 PoC</title> </head> <body> <canvas id="glCanvas"></canvas> <script> // Initialize WebGL context which utilizes ANGLE on Windows const canvas = document.getElementById('glCanvas'); const gl = canvas.getContext('webgl'); if (gl) { console.log('WebGL context initialized. ANGLE is active.'); // To trigger the Type Confusion, specific shader and buffer operations // are required that mimic the crafted HTML page behavior. // The following is a generic setup: const shaderSource = ` attribute vec4 position; void main() { gl_Position = position; } `; const shader = gl.createShader(gl.VERTEX_SHADER); gl.shaderSource(shader, shaderSource); gl.compileShader(shader); // Further specific manipulation of buffers and textures is needed // to reach the vulnerable code path in ANGLE. console.log('Shader compiled. Exploitation requires specific crafted payload.'); } </script> </body> </html>

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8554", "sourceIdentifier": "[email protected]", "published": "2026-05-14T20:17:16.817", "lastModified": "2026-05-15T15:16:55.130", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Type Confusion in ANGLE in Google Chrome on Windows prior to 148.0.7778.168 allowed a remote attacker who had compromised the renderer process to perform an out of bounds memory write 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:H/PR:N/UI:R/S:U/C:N/I:L/A:N", "baseScore": 3.1, "baseSeverity": "LOW", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 1.6, "impactScore": 1.4}]}, "weaknesses": [{"source": "[email protected]", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-843"}]}], "references": [{"url": "https://chromereleases.googleblog.com/2026/05/stable-channel-update-for-desktop_12.html", "source": "[email protected]"}, {"url": "https://issues.chromium.org/issues/499131214", "source": "[email protected]"}]}}