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

CVE-2025-10060: MongoDB Server DOS Vulnerability

CVE-2025-10060 is a denial of service flaw in MongoDB Server caused by improper WriteUnitOfWork state management. Upsert operations in transactions can violate unique index constraints, triggering server crashes.

Published: April 14, 2026

CVE-2025-10060 Overview

CVE-2025-10060 is a denial of service vulnerability in MongoDB Server that allows upsert operations retried within a transaction to violate unique index constraints. This improper state management can trigger an invariant failure during transaction commit, resulting in a server crash. The vulnerability stems from improper WriteUnitOfWork state management within the database engine.

Critical Impact

Attackers can remotely crash MongoDB Server instances by exploiting transaction retry logic, causing service disruption without requiring authentication or user interaction.

Affected Products

  • MongoDB Server v6.0 versions prior to 6.0.25
  • MongoDB Server v7.0 versions prior to 7.0.22
  • MongoDB Server v8.0 versions prior to 8.0.12

Discovery Timeline

  • September 5, 2025 - CVE-2025-10060 published to NVD
  • September 18, 2025 - Last updated in NVD database

Technical Details for CVE-2025-10060

Vulnerability Analysis

This vulnerability affects MongoDB Server's transaction processing mechanism, specifically how upsert operations are handled during retry scenarios. When a transaction containing upsert operations is retried, the WriteUnitOfWork state management fails to properly track and enforce unique index constraints. This leads to a condition where duplicate key violations are not detected until the commit phase, at which point an invariant check fails and causes the server to crash.

The flaw is classified under CWE-672 (Operation on a Resource after Expiration or Release), indicating that the server continues to operate on stale or improperly managed transaction state. This is particularly dangerous in high-availability deployments where transaction retries are common, such as during network partitions or replica set failovers.

Root Cause

The root cause lies in the WriteUnitOfWork state management subsystem within MongoDB's storage engine. During transaction retries, the state tracking for upsert operations does not properly synchronize with unique index constraint validation. When an upsert operation that would normally be deduplicated is retried within the same transaction context, the system fails to recognize that the operation has already been applied, leading to a duplicate entry attempt.

This state management issue occurs because:

  1. The transaction retry mechanism does not properly reset the WriteUnitOfWork state for previously executed operations
  2. Unique index constraint checks are deferred until commit time
  3. The invariant checking code expects a consistent state that is violated by the improper retry handling

Attack Vector

The attack vector for this vulnerability is network-based and does not require authentication or user interaction. An attacker with the ability to send database operations to a vulnerable MongoDB instance can craft transactions containing upsert operations designed to trigger retry conditions. By exploiting network timing or intentionally inducing conditions that cause transaction retries, the attacker can cause the unique index constraint violation that crashes the server.

The vulnerability is triggered when retry conditions occur during upsert operations within multi-document transactions. The timing-based nature of the attack means it may require multiple attempts, but the network accessibility and lack of authentication requirements make it feasible for remote exploitation.

Detection Methods for CVE-2025-10060

Indicators of Compromise

  • Unexpected MongoDB server crashes with invariant failure messages in logs
  • Log entries containing references to WriteUnitOfWork state errors or unique index violations during transaction commit
  • Repeated transaction retry attempts followed by server termination
  • Core dumps or crash reports indicating invariant failures in the transaction processing code path

Detection Strategies

  • Monitor MongoDB logs for invariant failure messages, particularly those occurring during transaction commit phases
  • Implement alerting on unexpected mongod process terminations or restarts
  • Track transaction retry rates and correlate with server stability metrics
  • Use MongoDB's diagnostic logging to capture detailed transaction state information

Monitoring Recommendations

  • Enable verbose logging for transaction operations to capture retry patterns
  • Configure process monitoring to detect unexpected mongod crashes and trigger alerts
  • Implement health checks that verify database availability and responsiveness
  • Monitor system logs for core dumps or segmentation faults from MongoDB processes

How to Mitigate CVE-2025-10060

Immediate Actions Required

  • Upgrade MongoDB Server v6.0 installations to version 6.0.25 or later
  • Upgrade MongoDB Server v7.0 installations to version 7.0.22 or later
  • Upgrade MongoDB Server v8.0 installations to version 8.0.12 or later
  • Review application code for patterns that may trigger excessive transaction retries with upsert operations

Patch Information

MongoDB has released patches addressing this vulnerability in the following versions:

  • MongoDB Server 6.0.25 for the v6.0 release line
  • MongoDB Server 7.0.22 for the v7.0 release line
  • MongoDB Server 8.0.12 for the v8.0 release line

For detailed technical information about this issue, refer to the MongoDB Jira Issue SERVER-95524.

Workarounds

  • Limit network access to MongoDB instances using firewall rules to reduce exposure to untrusted sources
  • Implement application-level rate limiting on transaction retry operations
  • Consider temporarily avoiding upsert operations within multi-document transactions until patches can be applied
  • Deploy MongoDB instances behind authentication and ensure only authorized clients can execute transactions
bash
# Example: Restrict MongoDB network access using iptables
# Allow connections only from trusted application servers
iptables -A INPUT -p tcp --dport 27017 -s 10.0.0.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 27017 -j DROP

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechMongodb

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.28%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-672
  • Vendor Resources
  • MongoDB Jira Issue SERVER-95524
  • Related CVEs
  • CVE-2026-9100: MongoDB C Driver GridFS DOS Vulnerability

  • CVE-2026-8843: MongoDB Server DOS Vulnerability

  • CVE-2026-8336: MongoDB Server DoS Vulnerability

  • CVE-2026-8199: MongoDB DoS Vulnerability via Bitwise Match
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