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-2025-9180

CVE-2025-9180: Mozilla Firefox Auth Bypass Vulnerability

CVE-2025-9180 is a same-origin policy bypass flaw in Mozilla Firefox's Canvas2D component that allows attackers to circumvent authentication controls. This article covers technical details, affected versions, and patches.

Published: April 15, 2026

CVE-2025-9180 Overview

CVE-2025-9180 is a same-origin policy bypass vulnerability in the Graphics: Canvas2D component of Mozilla Firefox and Thunderbird. The same-origin policy (SOP) is a critical security mechanism that restricts how documents or scripts from one origin can interact with resources from another origin. This vulnerability allows attackers to circumvent these protections, potentially enabling unauthorized access to sensitive data from cross-origin resources.

The flaw was addressed in Firefox 142, Firefox ESR 115.27, Firefox ESR 128.14, Firefox ESR 140.2, Thunderbird 142, Thunderbird 128.14, and Thunderbird 140.2.

Critical Impact

Attackers can bypass same-origin policy restrictions through the Canvas2D graphics component, potentially extracting sensitive cross-origin data including authentication tokens, session cookies, and user information from other websites.

Affected Products

  • Mozilla Firefox (versions prior to 142)
  • Mozilla Firefox ESR (versions prior to 115.27, 128.14, and 140.2)
  • Mozilla Thunderbird (versions prior to 142, 128.14, and 140.2)

Discovery Timeline

  • 2025-08-19 - CVE-2025-9180 published to NVD
  • 2026-04-13 - Last updated in NVD database

Technical Details for CVE-2025-9180

Vulnerability Analysis

This vulnerability is classified as CWE-346 (Origin Validation Error), indicating a failure to properly validate the origin of data or requests. The Canvas2D API is a powerful HTML5 feature that allows for dynamic, scriptable rendering of 2D shapes and images. When rendering cross-origin images on a canvas, browsers are supposed to "taint" the canvas to prevent scripts from extracting pixel data through methods like getImageData() or toDataURL().

The flaw in Firefox's Canvas2D implementation allowed attackers to bypass these tainting mechanisms, enabling extraction of cross-origin image data without proper authorization. This represents a fundamental breach of browser security boundaries, as it permits malicious websites to steal visual content from other origins that the user has access to.

Root Cause

The vulnerability stems from an origin validation error in the Canvas2D graphics component. Specifically, the implementation failed to properly enforce same-origin restrictions when processing certain image operations on the canvas. This allowed cross-origin images to be read from the canvas without the expected security restrictions being applied, effectively breaking the browser's security model for canvas operations.

Attack Vector

The attack is network-based and requires user interaction—specifically, a victim must navigate to a malicious webpage. Once on the attacker-controlled page, JavaScript code can:

  1. Create a canvas element and render cross-origin images (such as images from the victim's authenticated sessions on other websites)
  2. Exploit the vulnerability to bypass the canvas tainting mechanism
  3. Extract pixel data from these cross-origin images using canvas APIs
  4. Exfiltrate the captured data, which may contain sensitive information visible in the rendered images

This attack could be used to steal sensitive visual data including captcha images, profile pictures, document previews, or any other images loaded from authenticated sessions on other websites. The vulnerability allows both confidentiality and integrity impacts, as extracted data could be modified or misused by attackers.

Detection Methods for CVE-2025-9180

Indicators of Compromise

  • Unusual JavaScript activity involving Canvas2D API methods such as getImageData(), toDataURL(), or toBlob() combined with cross-origin image loading
  • Web pages attempting to load numerous cross-origin images and immediately render them to canvas elements
  • Network traffic showing exfiltration of base64-encoded image data to external domains
  • Browser console errors or logs related to cross-origin image tainting being unexpectedly bypassed

Detection Strategies

  • Monitor browser version information across endpoints to identify systems running vulnerable Firefox or Thunderbird versions
  • Deploy web content filtering to block access to known malicious sites exploiting this vulnerability
  • Implement Content Security Policy (CSP) headers on sensitive web applications to restrict canvas operations
  • Use browser telemetry or endpoint detection to identify unusual canvas API usage patterns

Monitoring Recommendations

  • Enable logging of JavaScript errors and canvas-related security violations in browser developer tools
  • Configure endpoint detection solutions to alert on vulnerable browser versions
  • Monitor for anomalous outbound data transfers from browser processes, especially base64-encoded payloads
  • Track Mozilla security advisories for additional indicators and guidance

How to Mitigate CVE-2025-9180

Immediate Actions Required

  • Update Mozilla Firefox to version 142 or later immediately
  • Update Mozilla Firefox ESR to version 115.27, 128.14, or 140.2 depending on your ESR branch
  • Update Mozilla Thunderbird to version 142, 128.14, or 140.2 depending on your release channel
  • Enable automatic updates for all Mozilla products in enterprise environments
  • Verify browser versions across all managed endpoints using asset management tools

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-64
  • Mozilla Security Advisory MFSA-2025-65
  • Mozilla Security Advisory MFSA-2025-66
  • Mozilla Security Advisory MFSA-2025-67
  • Mozilla Security Advisory MFSA-2025-70
  • Mozilla Security Advisory MFSA-2025-71
  • Mozilla Security Advisory MFSA-2025-72

Additional details can be found in Mozilla Bug Report #1979782. Linux distributions have also released updates; see Debian LTS Announcement #16 and Debian LTS Announcement #18.

Workarounds

  • Disable JavaScript in Firefox/Thunderbird as a temporary measure (significantly impacts browsing experience)
  • Use browser extensions that restrict canvas API access from untrusted origins
  • Implement strict Content Security Policy headers on web applications to limit canvas data extraction capabilities
  • Consider using an alternative browser until updates can be applied in environments where immediate patching is not feasible
bash
# Verify Firefox version on Linux/macOS
firefox --version

# Verify Thunderbird version
thunderbird --version

# Force update check via command line (Linux)
firefox --check-update

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechMozilla Firefox

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:H/A:N
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityHigh
  • AvailabilityNone
  • CWE References
  • CWE-346
  • Technical References
  • Mozilla Bug Report #1979782

  • Debian LTS Announcement #16

  • Debian LTS Announcement #18
  • Vendor Resources
  • Mozilla Security Advisory MFSA-2025-64

  • Mozilla Security Advisory MFSA-2025-65

  • Mozilla Security Advisory MFSA-2025-66

  • Mozilla Security Advisory MFSA-2025-67

  • Mozilla Security Advisory MFSA-2025-70

  • Mozilla Security Advisory MFSA-2025-71

  • Mozilla Security Advisory MFSA-2025-72
  • Related CVEs
  • CVE-2025-13019: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-13018: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2025-13017: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2026-4700: Mozilla Firefox Auth Bypass 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