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
    • 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-2025-8028

CVE-2025-8028: Mozilla Firefox WASM Branch Vulnerability

CVE-2025-8028 is a WebAssembly branch computation flaw in Mozilla Firefox on arm64 systems that causes incorrect branch address calculations. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2025-8028 Overview

CVE-2025-8028 is a critical vulnerability affecting Mozilla Firefox and Thunderbird on arm64 architecture systems. The vulnerability exists in the WebAssembly (WASM) engine's handling of br_table instructions. When a br_table instruction contains a large number of entries, the label offset can become too far from the instruction, leading to truncation and incorrect computation of the branch address. This improper numeric truncation can result in arbitrary code execution, allowing attackers to potentially compromise affected systems through maliciously crafted WebAssembly content.

Critical Impact

Remote attackers can exploit this vulnerability via malicious WebAssembly code to achieve arbitrary code execution without user interaction, potentially leading to complete system compromise on arm64 devices.

Affected Products

  • Mozilla Firefox versions prior to 141
  • Mozilla Firefox ESR versions prior to 115.26, 128.13, and 140.1
  • Mozilla Thunderbird versions prior to 141, 128.13, and 140.1

Discovery Timeline

  • July 22, 2025 - CVE-2025-8028 published to NVD
  • November 3, 2025 - Last updated in NVD database

Technical Details for CVE-2025-8028

Vulnerability Analysis

This vulnerability is classified under CWE-1332 (Improper Handling of Faults that Lead to Instruction Skips). The issue arises in the arm64-specific code generation for WebAssembly's br_table instruction, which implements a multi-way branch similar to a switch statement in higher-level languages.

On arm64 architecture, branch instructions have limited displacement ranges. When a br_table contains many entries, the compiled code grows large enough that the branch target labels exceed the maximum displacement that can be encoded in the instruction. Rather than properly handling this case, the Firefox/Thunderbird JIT compiler truncates the displacement value, resulting in an incorrect branch target address being computed at runtime.

This truncation can cause execution to jump to an unintended location in memory, potentially allowing an attacker to redirect control flow to attacker-controlled data or code. Since WebAssembly is commonly used for performance-critical web applications and can be loaded from any website, this creates a significant attack surface for remote exploitation.

Root Cause

The root cause is improper handling of large displacement values in the arm64 WebAssembly JIT compiler. When generating machine code for br_table instructions with numerous entries, the compiler fails to account for the arm64 architecture's branch instruction displacement limits. The branch offset is stored in a fixed-size field that cannot represent large values, causing numeric truncation when the table entries push labels beyond the representable range.

Attack Vector

The vulnerability is exploitable over the network through malicious web content. An attacker can craft a WebAssembly module containing a br_table instruction with a carefully calculated number of entries designed to trigger the truncation condition. When a victim visits a malicious webpage or receives a crafted email in Thunderbird that loads this WebAssembly content, the truncated branch address can redirect execution to an attacker-controlled location.

The attack requires no user interaction beyond visiting a malicious page, and the attacker needs no special privileges. The vulnerability specifically affects arm64 systems, which includes many mobile devices, Apple Silicon Macs, and ARM-based servers and desktops.

Detection Methods for CVE-2025-8028

Indicators of Compromise

  • Unusual WebAssembly modules with abnormally large br_table instructions being loaded in browser processes
  • Unexpected crashes or memory corruption events in Firefox or Thunderbird processes on arm64 systems
  • Browser processes exhibiting anomalous behavior following WebAssembly execution

Detection Strategies

  • Monitor for Firefox and Thunderbird processes loading WebAssembly content with unusually large function bodies on arm64 systems
  • Implement network-level inspection for WebAssembly modules containing large br_table constructs
  • Deploy endpoint detection solutions capable of identifying exploitation attempts targeting browser JIT engines

Monitoring Recommendations

  • Enable crash reporting and monitor for patterns consistent with JIT-related failures on arm64 devices
  • Utilize SentinelOne's behavioral AI to detect anomalous process behavior following browser-based code execution
  • Audit browser extension and content security policies to minimize exposure to untrusted WebAssembly content

How to Mitigate CVE-2025-8028

Immediate Actions Required

  • Update Mozilla Firefox to version 141 or later immediately
  • Update Firefox ESR to version 115.26, 128.13, or 140.1 depending on your ESR track
  • Update Mozilla Thunderbird to version 141, 128.13, or 140.1 depending on your release track
  • Prioritize updates for arm64 systems as they are specifically affected by this vulnerability

Patch Information

Mozilla has released security patches addressing this vulnerability across multiple product versions. Detailed information is available in the following security advisories:

  • Mozilla Security Advisory MFSA-2025-56
  • Mozilla Security Advisory MFSA-2025-57
  • Mozilla Security Advisory MFSA-2025-58
  • Mozilla Security Advisory MFSA-2025-59
  • Mozilla Security Advisory MFSA-2025-61
  • Mozilla Security Advisory MFSA-2025-62
  • Mozilla Security Advisory MFSA-2025-63

Additional technical details are tracked in Mozilla Bug Report #1971581. Debian users should refer to the Debian LTS Announcement for distribution-specific updates.

Workarounds

  • Disable WebAssembly in Firefox by navigating to about:config and setting javascript.options.wasm to false (note: this may break functionality on some websites)
  • Implement content security policies that restrict WebAssembly execution to trusted sources
  • Use enterprise management tools to enforce browser updates across your organization
  • Consider temporary use of alternative browsers on arm64 systems until patches can be applied
bash
# Firefox configuration to disable WebAssembly (temporary workaround)
# Add to user.js or set via about:config
user_pref("javascript.options.wasm", false);
user_pref("javascript.options.wasm_baselinejit", false);
user_pref("javascript.options.wasm_optimizingjit", false);

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechMozilla Firefox

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.11%

  • 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-1332
  • Technical References
  • Mozilla Bug Report #1971581

  • Debian LTS Announcement July 2025
  • Vendor Resources
  • Mozilla Security Advisory MFSA-2025-56

  • Mozilla Security Advisory MFSA-2025-57

  • Mozilla Security Advisory MFSA-2025-58

  • Mozilla Security Advisory MFSA-2025-59

  • Mozilla Security Advisory MFSA-2025-61

  • Mozilla Security Advisory MFSA-2025-62

  • Mozilla Security Advisory MFSA-2025-63
  • Related CVEs
  • CVE-2026-4718: Mozilla Firefox WebRTC Vulnerability

  • CVE-2026-4724: Mozilla Firefox Audio/Video Vulnerability

  • CVE-2026-4705: Mozilla Firefox WebRTC Vulnerability

  • CVE-2026-4702: Mozilla Firefox JIT Miscompilation Flaw
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