Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-2023-25729

CVE-2023-25729: Mozilla Firefox Auth Bypass Vulnerability

CVE-2023-25729 is an authorization bypass flaw in Mozilla Firefox that allows extensions to open external schemes without user permission. This article covers the technical details, affected versions, and mitigation steps.

Published: February 4, 2026

CVE-2023-25729 Overview

CVE-2023-25729 is an authorization bypass vulnerability affecting Mozilla Firefox, Firefox ESR, and Thunderbird. The flaw exists in how permission prompts for opening external schemes are handled. Permission prompts were only shown for ContentPrincipals, which allowed browser extensions to open external schemes without user interaction by leveraging ExpandedPrincipals. This could lead to further malicious actions such as downloading files or interacting with software already installed on the system.

Critical Impact

Malicious extensions can bypass permission prompts to open external schemes without user consent, potentially leading to unauthorized file downloads or interaction with installed software.

Affected Products

  • Mozilla Firefox versions prior to 110
  • Mozilla Firefox ESR versions prior to 102.8
  • Mozilla Thunderbird versions prior to 102.8

Discovery Timeline

  • 2023-06-02 - CVE-2023-25729 published to NVD
  • 2025-01-10 - Last updated in NVD database

Technical Details for CVE-2023-25729

Vulnerability Analysis

This vulnerability is classified under CWE-863 (Incorrect Authorization). The core issue lies in the inconsistent handling of permission checks between different types of principals in Mozilla's security model. When a web page or content attempts to open an external scheme (such as mailto:, tel:, or custom protocol handlers), the browser correctly displays a permission prompt to the user via ContentPrincipals. However, the same security check was not applied when requests originated from ExpandedPrincipals, which are used by browser extensions.

This differential treatment creates a security gap where extensions can silently trigger external scheme handlers without the user's knowledge or consent. The impact is significant because external schemes can invoke other applications on the user's system, potentially leading to code execution, data exfiltration, or social engineering attacks.

Root Cause

The root cause is an incomplete authorization check in Mozilla's permission prompt system. The code path that determines whether to display a permission dialog only validated ContentPrincipals, failing to account for ExpandedPrincipals used by browser extensions. This oversight allowed extensions to bypass the intended user confirmation step when opening external URLs or protocol handlers.

Attack Vector

The vulnerability requires user interaction to install a malicious extension, but once installed, the extension can exploit this flaw without further user consent. The attack scenario involves:

  1. An attacker distributes a malicious browser extension through social engineering or by compromising a legitimate extension
  2. Once installed, the extension uses ExpandedPrincipals to open external schemes
  3. The browser fails to show the permission prompt, silently allowing the action
  4. The external scheme handler is invoked, potentially launching applications or downloading files

The attack can be conducted remotely through the network, as extensions can be distributed via web downloads. While the vulnerability requires user action to install the extension, subsequent exploitation happens silently.

Detection Methods for CVE-2023-25729

Indicators of Compromise

  • Unusual extension activity opening external protocol handlers without corresponding user interaction
  • Unexpected application launches triggered by browser extensions
  • Unauthorized file downloads initiated through external scheme handlers
  • Browser extension logs showing external scheme requests without permission prompt events

Detection Strategies

  • Monitor browser extension behavior for unauthorized external scheme access patterns
  • Review installed browser extensions for suspicious or recently modified extensions
  • Implement endpoint detection rules for unusual protocol handler invocations from browser processes
  • Audit browser logs for external scheme requests that lack corresponding permission prompt events

Monitoring Recommendations

  • Enable browser telemetry and logging to capture extension activity related to external schemes
  • Deploy endpoint detection solutions that monitor for suspicious browser-spawned processes
  • Implement network monitoring to detect unusual outbound connections following external scheme invocations
  • Review browser extension permissions and audit for extensions with broad access rights

How to Mitigate CVE-2023-25729

Immediate Actions Required

  • Update Mozilla Firefox to version 110 or later immediately
  • Update Mozilla Firefox ESR to version 102.8 or later
  • Update Mozilla Thunderbird to version 102.8 or later
  • Review and remove any untrusted browser extensions
  • Implement enterprise browser policies to restrict extension installation

Patch Information

Mozilla has addressed this vulnerability in the following releases:

  • Firefox 110 - Full fix implemented for permission prompt handling
  • Firefox ESR 102.8 - Security backport for ESR channel
  • Thunderbird 102.8 - Security fix for mail client

For detailed patch information, refer to the official Mozilla Security Advisories:

  • Mozilla Security Advisory MFSA-2023-05
  • Mozilla Security Advisory MFSA-2023-06
  • Mozilla Security Advisory MFSA-2023-07

Technical details are available in Mozilla Bug Report #1792138.

Workarounds

  • Disable or remove all non-essential browser extensions until patching is complete
  • Implement strict extension policies via enterprise management tools to whitelist only approved extensions
  • Use browser profiles with limited extension permissions for high-risk browsing activities
  • Configure external protocol handlers to require confirmation at the OS level where possible
bash
# Firefox enterprise policy to restrict extensions (policies.json)
# Place in Firefox installation directory under /distribution/policies.json
{
  "policies": {
    "ExtensionSettings": {
      "*": {
        "installation_mode": "blocked"
      }
    },
    "DisableDeveloperTools": true
  }
}

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.8

  • EPSS Probability0.12%

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

  • CWE-863
  • Technical References
  • Mozilla Bug Report #1792138
  • Vendor Resources
  • Mozilla Security Advisory MFSA-2023-05

  • Mozilla Security Advisory MFSA-2023-06

  • Mozilla Security Advisory MFSA-2023-07
  • Related CVEs
  • CVE-2026-6756: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2026-6760: Mozilla Firefox Auth Bypass Vulnerability

  • CVE-2026-6771: Mozilla Firefox Auth Bypass Vulnerability

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