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

CVE-2026-8952

Published: 2026-05-19 14:16:51
Last Modified: 2026-05-19 15:16:34

Description

Privilege escalation in the Application Update component. This vulnerability was fixed in Firefox 151.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Mozilla Firefox < 151

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
import os # Conceptual PoC for CVE-2026-8952 # This script simulates checking if the update directory is writable, # which is a prerequisite for exploiting the privilege escalation vulnerability. def check_firefox_update_vuln(): # Path to the Firefox update directory (example for Windows) target_path = r"C:\Program Files\Mozilla Firefox\update" print(f"[*] Checking permissions for: {target_path}") if not os.path.exists(target_path): print("[!] Firefox update directory not found.") return # Check if the current user has write access if os.access(target_path, os.W_OK): print("[+] VULNERABLE: Write access detected in update directory.") print("[+] An attacker could potentially exploit the update service for privilege escalation.") else: print("[-] Secure: No write access detected with current privileges.") if __name__ == "__main__": check_firefox_update_vuln()

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8952", "sourceIdentifier": "[email protected]", "published": "2026-05-19T14:16:51.480", "lastModified": "2026-05-19T15:16:34.363", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Privilege escalation in the Application Update component. This vulnerability was fixed in Firefox 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:L/I:L/A:N", "baseScore": 6.5, "baseSeverity": "MEDIUM", "attackVector": "NETWORK", "attackComplexity": "LOW", "privilegesRequired": "NONE", "userInteraction": "NONE", "scope": "UNCHANGED", "confidentialityImpact": "LOW", "integrityImpact": "LOW", "availabilityImpact": "NONE"}, "exploitabilityScore": 3.9, "impactScore": 2.5}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-269"}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2021727", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-46/", "source": "[email protected]"}]}}