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
    • 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-2024-8384

CVE-2024-8384: Mozilla Firefox Use-After-Free Vulnerability

CVE-2024-8384 is a use-after-free flaw in Mozilla Firefox's JavaScript garbage collector that could lead to memory corruption. This article covers technical details, affected versions, impact, and mitigation.

Published: April 1, 2026

CVE-2024-8384 Overview

CVE-2024-8384 is a memory corruption vulnerability affecting Mozilla Firefox and Firefox ESR browsers. The JavaScript garbage collector could mis-color cross-compartment objects if Out-of-Memory (OOM) conditions were detected at the right point between two passes. This flaw could lead to memory corruption, potentially enabling attackers to execute arbitrary code or cause denial of service conditions through specially crafted web content.

Critical Impact

This vulnerability allows remote attackers to potentially achieve arbitrary code execution by triggering memory corruption through carefully timed OOM conditions in the JavaScript garbage collector. No user interaction beyond visiting a malicious webpage is required.

Affected Products

  • Mozilla Firefox versions prior to 130
  • Mozilla Firefox ESR versions prior to 128.2
  • Mozilla Firefox ESR versions prior to 115.15
  • Mozilla Thunderbird versions prior to 128.2
  • Mozilla Thunderbird versions prior to 115.15

Discovery Timeline

  • September 3, 2024 - CVE-2024-8384 published to NVD
  • November 4, 2025 - Last updated in NVD database

Technical Details for CVE-2024-8384

Vulnerability Analysis

This vulnerability resides in the SpiderMonkey JavaScript engine's garbage collector implementation. The issue occurs during the mark-and-sweep garbage collection process, specifically when handling cross-compartment objects. Compartments in SpiderMonkey are used to isolate JavaScript objects from different origins or contexts, providing crucial security boundaries within the browser.

The garbage collector uses a tri-color marking scheme (white, gray, black) to track object reachability. When processing cross-compartment references, the collector must properly "color" objects to ensure they are not prematurely freed. However, if an OOM condition occurs at a specific point between two garbage collection passes, the coloring mechanism can fail, leading to objects being incorrectly marked.

This mis-coloring can result in use-after-free conditions (CWE-416) or out-of-bounds writes (CWE-787), as the garbage collector may free objects that are still in use or fail to properly track object boundaries.

Root Cause

The root cause lies in insufficient error handling during the garbage collection's marking phase when processing cross-compartment object references. When memory allocation fails due to OOM conditions at a critical point between two collection passes, the garbage collector does not properly maintain the invariants required for correct object coloring. This creates a race-like condition where the collector's internal state becomes inconsistent, leading to memory safety violations.

Attack Vector

An attacker can exploit this vulnerability by crafting malicious JavaScript that deliberately triggers OOM conditions while simultaneously creating cross-compartment object references. The attack vector is network-based, requiring no authentication or user privileges beyond convincing the target to visit a malicious webpage or load untrusted JavaScript content.

The exploitation would typically involve:

  1. Creating numerous cross-compartment object references through iframe manipulation or worker threads
  2. Triggering memory pressure to induce OOM conditions
  3. Timing the memory pressure to coincide with garbage collection passes
  4. Leveraging the resulting memory corruption for further exploitation

Due to the complexity of precisely timing OOM conditions with garbage collection cycles, exploitation may require multiple attempts, but the consequences of successful exploitation could include arbitrary code execution within the browser's sandbox.

Detection Methods for CVE-2024-8384

Indicators of Compromise

  • Unusual memory consumption patterns in Firefox or Thunderbird processes prior to crashes
  • Browser crashes with memory corruption signatures in crash reports
  • JavaScript errors related to garbage collection or memory allocation failures in browser console logs
  • Unexpected process termination of browser renderer processes with memory-related exit codes

Detection Strategies

  • Monitor for abnormal memory allocation patterns in browser processes using endpoint detection capabilities
  • Implement browser telemetry analysis to detect unusual garbage collection behavior or OOM condition frequencies
  • Deploy network-level inspection to identify JavaScript payloads with memory exhaustion patterns
  • Enable crash report analysis to identify memory corruption signatures consistent with this vulnerability

Monitoring Recommendations

  • Configure SentinelOne agents to monitor Firefox and Thunderbird process behavior for memory corruption indicators
  • Enable browser crash report collection and analysis for affected versions
  • Implement web filtering to block known malicious domains serving exploitation attempts
  • Monitor system resource usage for anomalous memory consumption by browser processes

How to Mitigate CVE-2024-8384

Immediate Actions Required

  • Update Mozilla Firefox to version 130 or later immediately
  • Update Mozilla Firefox ESR to version 128.2 or 115.15 or later
  • Update Mozilla Thunderbird to version 128.2 or 115.15 or later
  • Consider temporarily disabling JavaScript on untrusted websites until patching is complete
  • Deploy browser update policies through enterprise management tools

Patch Information

Mozilla has released security patches addressing this vulnerability across multiple product lines. Organizations should apply the appropriate updates based on their deployment:

ProductFixed VersionAdvisory
Firefox130MFSA-2024-39
Firefox ESR128.2MFSA-2024-40
Firefox ESR115.15MFSA-2024-41
Thunderbird128.2MFSA-2024-43
Thunderbird115.15MFSA-2024-44

Additional details are available in Mozilla Bug Report #1911288. Debian users should also refer to the Debian LTS Security Announcements for package updates.

Workarounds

  • Disable JavaScript execution in Firefox by setting javascript.enabled to false in about:config (significantly impacts web functionality)
  • Use browser isolation or sandboxing technologies to limit the impact of potential exploitation
  • Restrict browsing to trusted websites only until patches can be applied
  • Consider using alternative browsers temporarily while awaiting patch deployment in enterprise environments
bash
# Firefox configuration to disable JavaScript (temporary workaround)
# Navigate to about:config and set:
# javascript.enabled = false

# Enterprise deployment: Use Firefox policies.json
# Location: /distribution/policies.json (Linux) or install_directory\distribution\policies.json (Windows)
cat << 'EOF' > /usr/lib/firefox/distribution/policies.json
{
  "policies": {
    "DisableFirefoxAccounts": true,
    "ExtensionUpdate": false,
    "Preferences": {
      "javascript.enabled": {
        "Value": false,
        "Status": "locked"
      }
    }
  }
}
EOF

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

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.35%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-787

  • CWE-416
  • Technical References
  • Mozilla Bug Report #1911288

  • Mozilla Security Advisory MFSA-2024-43

  • Mozilla Security Advisory MFSA-2024-44

  • Debian LTS Announcement #12

  • Debian LTS Announcement #25
  • Vendor Resources
  • Mozilla Security Advisory MFSA-2024-39

  • Mozilla Security Advisory MFSA-2024-40

  • Mozilla Security Advisory MFSA-2024-41
  • Related CVEs
  • CVE-2025-1931: Mozilla Firefox Use-After-Free Vulnerability

  • CVE-2025-1930: Mozilla Firefox Use-After-Free Vulnerability

  • CVE-2025-10527: Mozilla Firefox Use-After-Free Vulnerability

  • CVE-2026-4701: 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