A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2024-5688

CVE-2024-5688: Mozilla Firefox Use-After-Free Flaw

CVE-2024-5688 is a use-after-free vulnerability in Mozilla Firefox triggered during garbage collection. Attackers could exploit this flaw during object transplant. This article covers technical details, affected versions, and mitigation.

Published: June 2, 2026

CVE-2024-5688 Overview

CVE-2024-5688 is a use-after-free vulnerability [CWE-416] in Mozilla Firefox, Firefox ESR, and Thunderbird. The flaw occurs during object transplant operations when garbage collection triggers at a specific time. An attacker who successfully exploits this race condition can cause memory corruption that may lead to arbitrary code execution within the browser process.

The vulnerability affects Firefox versions before 127, Firefox ESR before 115.12, and Thunderbird before 115.12. Mozilla addressed the issue in advisories MFSA-2024-25, MFSA-2024-26, and MFSA-2024-28. Exploitation requires a victim to visit a maliciously crafted web page or process attacker-controlled content.

Critical Impact

Successful exploitation can lead to memory corruption and potential remote code execution in the context of the browser, enabling attackers to compromise user systems through drive-by web content.

Affected Products

  • Mozilla Firefox versions before 127
  • Mozilla Firefox ESR versions before 115.12
  • Mozilla Thunderbird versions before 115.12

Discovery Timeline

  • 2024-06-11 - CVE-2024-5688 published to NVD
  • 2025-04-04 - Last updated in NVD database

Technical Details for CVE-2024-5688

Vulnerability Analysis

The vulnerability resides in the SpiderMonkey JavaScript engine's object transplant logic. Object transplanting is a mechanism used in browsers to migrate an object's identity across compartments, commonly during cross-origin navigation or wrapper remapping. If a garbage collection (GC) cycle is triggered during the transplant operation, references to the object can become invalidated while still in use.

The resulting use-after-free condition allows an attacker to manipulate freed memory regions. By controlling allocation patterns and timing GC invocations, attackers can place attacker-controlled data into the freed slot. This corruption primitive can be escalated to arbitrary code execution within the content process.

Root Cause

The root cause is improper lifecycle management of objects during transplant operations. The transplant code path does not adequately guard against garbage collection occurring at intermediate states. When GC runs at the precise window, it reclaims memory still referenced by the transplant logic, violating memory safety invariants [CWE-416].

Attack Vector

Exploitation requires network access. An attacker hosts a malicious web page or delivers crafted HTML email content to Thunderbird users. The page uses JavaScript to allocate objects, trigger transplant operations, and force garbage collection at a precise moment. The high attack complexity reflects the timing-dependent nature of the race condition.

No verified public proof-of-concept code is available. The vulnerability is described in Mozilla Bug Report #1895086 and the associated Mozilla security advisories.

Detection Methods for CVE-2024-5688

Indicators of Compromise

  • Unexpected child process crashes in firefox.exe or thunderbird.exe, particularly with access violation signatures involving the JavaScript engine.
  • Browser crash reports referencing JSObject, JS_TransplantObject, or garbage collection routines in the stack trace.
  • Outbound connections from browser processes to unfamiliar domains immediately following visits to untrusted web content.

Detection Strategies

  • Inventory installed Firefox, Firefox ESR, and Thunderbird versions across the environment and flag instances below the patched releases.
  • Monitor endpoint telemetry for browser process anomalies such as spawning of shells, scripting hosts, or LOLBins from firefox.exe or thunderbird.exe.
  • Correlate crash dumps with web proxy logs to identify users who encountered exploit content before the crash.

Monitoring Recommendations

  • Enable browser crash reporting and forward telemetry to your SIEM for centralized analysis.
  • Track Mozilla security advisories MFSA-2024-25, MFSA-2024-26, and MFSA-2024-28 for related fixes.
  • Alert on browser processes performing unusual file writes, registry modifications, or network connections.

How to Mitigate CVE-2024-5688

Immediate Actions Required

  • Update Firefox to version 127 or later on all managed endpoints.
  • Update Firefox ESR to version 115.12 or later for long-term support deployments.
  • Update Thunderbird to version 115.12 or later, especially on systems where users open HTML email from untrusted senders.
  • Apply Debian LTS updates referenced in the Debian LTS Security Announcement and Debian LTS Security Update for affected Linux systems.

Patch Information

Mozilla released fixes in Firefox 127, Firefox ESR 115.12, and Thunderbird 115.12. Patch details are available in Mozilla Security Advisory MFSA-2024-25, Mozilla Security Advisory MFSA-2024-26, and Mozilla Security Advisory MFSA-2024-28.

Workarounds

  • Configure Thunderbird to render messages as plain text to reduce exposure from HTML email content.
  • Restrict JavaScript execution in untrusted contexts using enterprise browser policies where feasible.
  • Deploy network-level filtering to block access to known malicious domains and reduce drive-by exploitation risk.
bash
# Verify Firefox version on Linux endpoints
firefox --version

# Verify Thunderbird version
thunderbird --version

# Example apt update for Debian-based systems
sudo apt update && sudo apt install --only-upgrade firefox-esr thunderbird

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 Score8.1

  • EPSS Probability1.16%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-416
  • Technical References
  • Mozilla Bug Report #1895086

  • Debian LTS Security Announcement

  • Debian LTS Security Update
  • Vendor Resources
  • Mozilla Security Advisory MFSA-2024-25

  • Mozilla Security Advisory MFSA-2024-26

  • Mozilla Security Advisory MFSA-2024-28
  • Related CVEs
  • CVE-2026-8947: Mozilla Firefox Use-After-Free Vulnerability

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

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

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

Experience the Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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