The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI for Security
      Leading the Way in AI-Powered Security Solutions
    • Securing AI
      Accelerate AI Adoption with Secure AI Tools, Apps, and Agents.
    • How It Works
      The Singularity XDR Difference
    • Singularity Marketplace
      One-Click Integrations to Unlock the Power of XDR
    • Pricing & Packaging
      Comparisons and Guidance at a Glance
    Data & AI
    • Purple AI
      Accelerate SecOps with Generative AI
    • Singularity Hyperautomation
      Easily Automate Security Processes
    • AI-SIEM
      The AI SIEM for the Autonomous SOC
    • AI Data Pipelines
      Security Data Pipeline for AI SIEM and Data Optimization
    • Singularity Data Lake
      AI-Powered, Unified Data Lake
    • Singularity Data Lake for Log Analytics
      Seamlessly Ingest Data from On-Prem, Cloud or Hybrid Environments
    Endpoint Security
    • Singularity Endpoint
      Autonomous Prevention, Detection, and Response
    • Singularity XDR
      Native & Open Protection, Detection, and Response
    • Singularity RemoteOps Forensics
      Orchestrate Forensics at Scale
    • Singularity Threat Intelligence
      Comprehensive Adversary Intelligence
    • Singularity Vulnerability Management
      Application & OS Vulnerability Management
    • Singularity Identity
      Identity Threat Detection and Response
    Cloud Security
    • Singularity Cloud Security
      Block Attacks with an AI-Powered CNAPP
    • Singularity Cloud Native Security
      Secure Cloud and Development Resources
    • Singularity Cloud Workload Security
      Real-Time Cloud Workload Protection Platform
    • Singularity Cloud Data Security
      AI-Powered Threat Detection for Cloud Storage
    • Singularity Cloud Security Posture Management
      Detect and Remediate Cloud Misconfigurations
    Securing AI
    • Prompt Security
      Secure AI Tools Across Your Enterprise
  • Why SentinelOne?
    Why SentinelOne?
    • Why SentinelOne?
      Cybersecurity Built for What’s Next
    • Our Customers
      Trusted by the World’s Leading Enterprises
    • Industry Recognition
      Tested and Proven by the Experts
    • About Us
      The Industry Leader in Autonomous Cybersecurity
    Compare SentinelOne
    • Arctic Wolf
    • Broadcom
    • CrowdStrike
    • Cybereason
    • Microsoft
    • Palo Alto Networks
    • Sophos
    • Splunk
    • Trellix
    • Trend Micro
    • Wiz
    Verticals
    • Energy
    • Federal Government
    • Finance
    • Healthcare
    • Higher Education
    • K-12 Education
    • Manufacturing
    • Retail
    • State and Local Government
  • Services
    Managed Services
    • Managed Services Overview
      Wayfinder Threat Detection & Response
    • Threat Hunting
      World-Class Expertise and Threat Intelligence
    • Managed Detection & Response
      24/7/365 Expert MDR Across Your Entire Environment
    • Incident Readiness & Response
      DFIR, Breach Readiness, & Compromise Assessments
    Support, Deployment, & Health
    • Technical Account Management
      Customer Success with Personalized Service
    • SentinelOne GO
      Guided Onboarding & Deployment Advisory
    • SentinelOne University
      Live and On-Demand Training
    • Services Overview
      Comprehensive Solutions for Seamless Security Operations
    • SentinelOne Community
      Community Login
  • Partners
    Our Network
    • MSSP Partners
      Succeed Faster with SentinelOne
    • Singularity Marketplace
      Extend the Power of S1 Technology
    • Cyber Risk Partners
      Enlist Pro Response and Advisory Teams
    • Technology Alliances
      Integrated, Enterprise-Scale Solutions
    • SentinelOne for AWS
      Hosted in AWS Regions Around the World
    • Channel Partners
      Deliver the Right Solutions, Together
    • SentinelOne for Google Cloud
      Unified, Autonomous Security Giving Defenders the Advantage at Global Scale
    • Partner Locator
      Your Go-to Source for Our Top Partners in Your Region
    Partner Portal→
  • Resources
    Resource Center
    • Case Studies
    • Data Sheets
    • eBooks
    • Reports
    • Videos
    • Webinars
    • Whitepapers
    • Events
    View All Resources→
    Blog
    • Feature Spotlight
    • For CISO/CIO
    • From the Front Lines
    • Identity
    • Cloud
    • macOS
    • SentinelOne Blog
    Blog→
    Tech Resources
    • SentinelLABS
    • Ransomware Anthology
    • Cybersecurity 101
  • About
    About SentinelOne
    • About SentinelOne
      The Industry Leader in Cybersecurity
    • Investor Relations
      Financial Information & Events
    • SentinelLABS
      Threat Research for the Modern Threat Hunter
    • Careers
      The Latest Job Opportunities
    • Press & News
      Company Announcements
    • Cybersecurity Blog
      The Latest Cybersecurity Threats, News, & More
    • FAQ
      Get Answers to Our Most Frequently Asked Questions
    • DataSet
      The Live Data Platform
    • S Foundation
      Securing a Safer Future for All
    • S Ventures
      Investing in the Next Generation of Security, Data and AI
  • Pricing
Get StartedContact Us
CVE Vulnerability Database
Vulnerability Database/CVE-2026-8390

CVE-2026-8390: Mozilla Firefox Use-After-Free Vulnerability

CVE-2026-8390 is a use-after-free vulnerability in Mozilla Firefox's WebAssembly component that can lead to memory corruption. This article covers technical details, affected versions, security impact, and mitigation.

Published: May 17, 2026

CVE-2026-8390 Overview

CVE-2026-8390 is a use-after-free vulnerability in the JavaScript WebAssembly component of Mozilla Firefox. The flaw is tracked under CWE-416 and is exploitable over the network through crafted web content. A remote attacker can trigger memory corruption by serving a malicious page that invokes the affected WebAssembly code paths. Mozilla addressed the issue in Firefox 150.0.3 and documented the fix in the Mozilla Security Advisory MFSA-2026-45.

Critical Impact

Remote attackers can trigger memory corruption in the browser through malicious WebAssembly content, potentially leading to crashes or further exploitation.

Affected Products

  • Mozilla Firefox versions prior to 150.0.3
  • Firefox builds incorporating the vulnerable JavaScript WebAssembly component
  • Desktop Firefox distributions on Windows, macOS, and Linux

Discovery Timeline

  • 2026-05-12 - CVE-2026-8390 published to the National Vulnerability Database (NVD)
  • 2026-05-14 - Last updated in NVD database

Technical Details for CVE-2026-8390

Vulnerability Analysis

The vulnerability is a use-after-free condition within Firefox's JavaScript WebAssembly subsystem. A use-after-free occurs when code continues to reference memory after it has been released, allowing attacker-controlled data to occupy the freed region. In a browser context, this typically results in a crash and may enable code execution if the attacker can shape the heap predictably. The flaw is reachable from web content because WebAssembly modules can be loaded and instantiated by any origin the browser visits. Mozilla classified the issue as high impact and corrected it in Firefox 150.0.3. Additional engineering context is available in the Mozilla Bug Report #2038081.

Root Cause

The defect stems from the JavaScript WebAssembly component releasing an object while another execution path still holds a reference to it. When the dangling reference is dereferenced, the engine operates on memory that may have been reallocated for unrelated data. This violates object lifetime guarantees inside the JavaScript engine.

Attack Vector

Exploitation requires a victim to load attacker-controlled web content in a vulnerable Firefox build. No authentication or user interaction beyond normal browsing is required. A malicious site can deliver a WebAssembly module that drives the engine into the vulnerable state. The attack scope is limited to the browser process, but successful exploitation can corrupt heap memory accessible to the renderer.

Vulnerability mechanism (prose description):
1. A WebAssembly module is instantiated by attacker-controlled JavaScript.
2. An internal object backing the module is freed during a transition or error path.
3. A surviving reference is later dereferenced by the engine.
4. Heap content that replaced the freed allocation is processed as the original object type.

Detection Methods for CVE-2026-8390

Indicators of Compromise

  • Unexpected Firefox renderer crashes with stack traces involving WebAssembly internals.
  • Crash reporter submissions referencing js::wasm modules immediately after visiting an untrusted site.
  • Outbound connections from Firefox processes to domains serving large or obfuscated .wasm payloads.

Detection Strategies

  • Inventory installed Firefox versions across managed endpoints and flag any build earlier than 150.0.3.
  • Correlate browser process crash events with web proxy logs to identify the page that triggered the failure.
  • Monitor for unusual child process creation or memory anomalies originating from firefox.exe or equivalent binaries.

Monitoring Recommendations

  • Forward browser crash telemetry and endpoint process events to a centralized analytics platform for correlation.
  • Alert on Firefox processes spawning shells, scripting hosts, or LOLBins shortly after browsing activity.
  • Track HTTP responses with Content-Type: application/wasm from low-reputation domains in web gateway logs.

How to Mitigate CVE-2026-8390

Immediate Actions Required

  • Update Firefox to version 150.0.3 or later on all managed endpoints.
  • Enforce browser update policies through enterprise management tooling to prevent rollback to vulnerable builds.
  • Restrict access to untrusted sites via web filtering until patching is verified across the fleet.

Patch Information

Mozilla fixed the vulnerability in Firefox 150.0.3. The patch is described in the Mozilla Security Advisory MFSA-2026-45 and tracked in Mozilla Bug Report #2038081. Administrators should validate the installed version on each endpoint after deployment.

Workarounds

  • Block or restrict WebAssembly execution through enterprise browser policies where supported.
  • Use web content filtering to limit exposure to untrusted origins until patches are applied.
  • Run Firefox under standard user privileges to reduce post-exploitation impact.
bash
# Verify installed Firefox version on Linux/macOS
firefox --version

# Windows: query installed version from the registry
reg query "HKLM\SOFTWARE\Mozilla\Mozilla Firefox" /v CurrentVersion

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechMozilla Firefox

  • SeverityHIGH

  • CVSS Score7.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:L/A:L
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityLow
  • CWE References
  • CWE-416
  • Technical References
  • Mozilla Bug Report #2038081
  • Vendor Resources
  • Mozilla Security Advisory MFSA-2026-45
  • Related CVEs
  • CVE-2026-6757: Mozilla Firefox Use-After-Free Vulnerability

  • CVE-2026-6751: Mozilla Firefox Use-After-Free Vulnerability

  • CVE-2026-6759: Mozilla Firefox Use-After-Free Vulnerability

  • CVE-2026-6778: Mozilla Firefox Use-After-Free Vulnerability
Default Legacy - Prefooter | Experience the World’s Most Advanced Cybersecurity Platform

Experience the World’s Most Advanced Cybersecurity Platform

See how our intelligent, autonomous cybersecurity platform can protect your organization now and into the future.

Try SentinelOne
  • Get Started
  • Get a Demo
  • Product Tour
  • Why SentinelOne
  • Pricing & Packaging
  • FAQ
  • Contact
  • Contact Us
  • Customer Support
  • SentinelOne Status
  • Language
  • Platform
  • Singularity Platform
  • Singularity Endpoint
  • Singularity Cloud
  • Singularity AI-SIEM
  • Singularity Identity
  • Singularity Marketplace
  • Purple AI
  • Services
  • Wayfinder TDR
  • SentinelOne GO
  • Technical Account Management
  • Support Services
  • Verticals
  • Energy
  • Federal Government
  • Finance
  • Healthcare
  • Higher Education
  • K-12 Education
  • Manufacturing
  • Retail
  • State and Local Government
  • Cybersecurity for SMB
  • Resources
  • Blog
  • Labs
  • Case Studies
  • Videos
  • Product Tours
  • Events
  • Cybersecurity 101
  • eBooks
  • Webinars
  • Whitepapers
  • Press
  • News
  • Ransomware Anthology
  • Company
  • About Us
  • Our Customers
  • Careers
  • Partners
  • Legal & Compliance
  • Security & Compliance
  • Investor Relations
  • S Foundation
  • S Ventures

©2026 SentinelOne, All Rights Reserved.

Privacy Notice Terms of Use

English