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-13644

CVE-2025-13644: MongoDB Server DoS Vulnerability

CVE-2025-13644 is a denial of service vulnerability in MongoDB Server causing invariant failures during batched delete operations. This article covers the technical details, affected versions, security impact, and mitigation.

Published: May 26, 2026

CVE-2025-13644 Overview

CVE-2025-13644 is a denial-of-service vulnerability in MongoDB Server triggered by batched delete operations. The server incorrectly assumes multiple documents exist in a batch when a single document exceeds BSONObjMaxSize. This faulty assumption triggers an invariant failure, causing the server process to terminate. The flaw is classified as a reachable assertion [CWE-617] and affects MongoDB Server v7.0 versions prior to 7.0.26, v8.0 versions prior to 8.0.13, and v8.1 versions prior to 8.1.2. An authenticated attacker with low privileges can exploit the issue over the network to crash the database service.

Critical Impact

An authenticated attacker can crash a MongoDB Server instance by issuing crafted batched delete operations involving oversized documents, resulting in service disruption.

Affected Products

  • MongoDB Server v7.0 prior to 7.0.26
  • MongoDB Server v8.0 prior to 8.0.13
  • MongoDB Server v8.1 prior to 8.1.2

Discovery Timeline

  • 2025-11-25 - CVE-2025-13644 published to NVD
  • 2025-12-11 - Last updated in NVD database

Technical Details for CVE-2025-13644

Vulnerability Analysis

The vulnerability resides in MongoDB Server's handling of batched delete operations. During processing, the server inspects document size to make decisions about batch composition. When a document's serialized size exceeds the BSONObjMaxSize limit, the server incorrectly infers that the batch contains multiple documents. This incorrect inference violates an internal invariant. The invariant check then fails, causing the server to terminate the process abnormally.

The issue is a reachable assertion failure cataloged under [CWE-617]. Such failures convert an unexpected internal state into a hard crash rather than a recoverable error. Because the trigger condition depends only on document size during a delete batch, an authenticated client with permission to delete documents can reliably crash the server. Repeated exploitation prevents legitimate clients from completing read or write operations against the affected instance.

Root Cause

The defect originates in the batched delete code path. The logic conflates the condition "document size exceeds BSONObjMaxSize" with "multiple documents present in the batch." These two conditions are not equivalent. When the server processes a single oversized document, the internal state diverges from what subsequent code assumes, and the invariant fires.

Attack Vector

The attack is network-reachable and requires authenticated access with privileges sufficient to issue delete operations. No user interaction is required. The attacker submits a batched delete command that causes the server to evaluate a document whose size exceeds BSONObjMaxSize. The resulting invariant failure terminates the mongod process. Confidentiality and integrity are not affected, but availability is impacted because the database becomes unreachable until the process restarts.

No verified public exploit code is available for CVE-2025-13644. Refer to the MongoDB Jira Issue SERVER-101180 for vendor technical details.

Detection Methods for CVE-2025-13644

Indicators of Compromise

  • Unexpected mongod process termination with invariant failure messages in server logs referencing batched delete code paths.
  • Repeated client-side errors or connection resets correlated with delete operations against collections containing large documents.
  • Cluster failover events or replica set step-downs immediately following batched delete commands.

Detection Strategies

  • Parse MongoDB server logs for Invariant failure strings and stack traces involving delete batch processing functions.
  • Inspect the audit log for delete commands issued by low-privilege accounts immediately prior to a process crash.
  • Monitor for mongod exit codes that indicate abnormal termination rather than graceful shutdown.

Monitoring Recommendations

  • Alert on mongod process restarts and correlate timestamps with recent delete command activity.
  • Track operation metrics for spikes in failed delete commands or oversized document write attempts.
  • Forward MongoDB logs to a centralized analytics platform to enable correlation across replica set members.

How to Mitigate CVE-2025-13644

Immediate Actions Required

  • Upgrade MongoDB Server to version 7.0.26, 8.0.13, 8.1.2, or later as appropriate for the deployed release line.
  • Audit role assignments and remove unnecessary delete privileges from application and user accounts.
  • Restrict network exposure of MongoDB instances to trusted application tiers only.

Patch Information

MongoDB has released fixed versions addressing the invariant failure. Apply MongoDB Server 7.0.26 for the 7.0 branch, 8.0.13 for the 8.0 branch, or 8.1.2 for the 8.1 branch. Track the vendor advisory at MongoDB Jira Issue SERVER-101180 for additional release notes and downstream patch availability.

Workarounds

  • Enforce application-level validation to reject delete operations that target documents approaching BSONObjMaxSize.
  • Apply role-based access control to limit which accounts can execute batched delete commands.
  • Place MongoDB behind a network policy that restricts access to vetted client subnets until patches are deployed.
bash
# Verify installed MongoDB Server version and plan upgrade
mongod --version

# Example: review users with delete privileges in the mongo shell
use admin
db.system.users.find({ "roles.role": { $in: ["readWrite", "dbOwner", "root"] } })

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

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:N/VI:N/VA:H/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-617
  • Vendor Resources
  • MongoDB Jira Issue SERVER-101180
  • 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