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

CVE-2026-8945

Published: 2026-05-19 14:16:51
Last Modified: 2026-05-19 16:16:23

Description

Sandbox escape in Firefox and Firefox Focus for Android. This vulnerability was fixed in Firefox 151.

CVSS Details

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

Configurations (Affected Products)

No configuration data available.

Firefox (Android) < 151
Firefox Focus (Android) < 151

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
/** * Conceptual Proof of Concept (PoC) for CVE-2026-8945 * This script demonstrates the logic flow to trigger the sandbox escape. * Note: Actual exploit code is obfuscated and complex. */ function exploitSandboxEscape() { console.log("[+] Initializing exploit for CVE-2026-8945..."); // 1. Prepare the malicious payload targeting the vulnerable sandbox interface // This mimics the specific logic that bypasses the sandbox restriction. var payload = { target: "android_sandbox_broker", action: "escape_sequence", data: "malicious_instruction_to_break_isolation" }; try { // 2. Trigger the vulnerability // In a real scenario, this would call a specific vulnerable function in Firefox < 151 if (isVulnerableVersion()) { console.log("[+] Target is vulnerable. Triggering escape..."); // Simulate the execution of code outside the sandbox executeOutsideSandbox(payload); console.log("[+] Sandbox escape successful! Accessing system files..."); // Hypothetical command execution after escape runSystemCommand("whoami"); } else { console.log("[-] Target is patched or not vulnerable."); } } catch (error) { console.error("[-] Exploit failed: " + error.message); } } // Helper function to simulate vulnerability check function isVulnerableVersion() { // Returns true for simulation purposes return true; } // Helper function to simulate sandbox escape logic function executeOutsideSandbox(data) { // Logic to interact with the Android OS directly bypassing the sandbox console.log("[DEBUG] Executing payload outside sandbox: " + JSON.stringify(data)); } // Helper function to simulate system command execution function runSystemCommand(cmd) { console.log("[DEBUG] Running system command: " + cmd); } // Execute the exploit exploitSandboxEscape();

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8945", "sourceIdentifier": "[email protected]", "published": "2026-05-19T14:16:50.687", "lastModified": "2026-05-19T16:16:22.777", "vulnStatus": "Awaiting Analysis", "cveTags": [], "descriptions": [{"lang": "en", "value": "Sandbox escape in Firefox and Firefox Focus for Android. 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:H/PR:N/UI:R/S:U/C:H/I:H/A:H", "baseScore": 7.5, "baseSeverity": "HIGH", "attackVector": "NETWORK", "attackComplexity": "HIGH", "privilegesRequired": "NONE", "userInteraction": "REQUIRED", "scope": "UNCHANGED", "confidentialityImpact": "HIGH", "integrityImpact": "HIGH", "availabilityImpact": "HIGH"}, "exploitabilityScore": 1.6, "impactScore": 5.9}]}, "weaknesses": [{"source": "134c704f-9b21-4f2e-91b3-4a467353bcc0", "type": "Secondary", "description": [{"lang": "en", "value": "CWE-693"}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2003171", "source": "[email protected]"}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-46/", "source": "[email protected]"}]}}