banner logoJoin us at RSAC™ 2026 Conference, March 23–March 26 | North Expo, Booth N-5863Join us at RSAC™ 2026, March 23–March 26Learn More
Experiencing a Breach?Blog
Get StartedContact Us
SentinelOne
  • Platform
    Platform Overview
    • Singularity Platform
      Welcome to Integrated Enterprise Security
    • AI Security Portfolio
      Leading the Way in AI-Powered Security Solutions
    • 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
      Digital Forensics, IRR & Breach Readiness
    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
    • 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-2026-25613

CVE-2026-25613: MongoDB Server DOS Vulnerability

CVE-2026-25613 is a denial of service vulnerability in MongoDB Server where authorized users can disable the server by querying collections with invalid compound wildcard indexes. This article covers technical details, impact, and mitigation.

Published: February 13, 2026

CVE-2026-25613 Overview

CVE-2026-25613 is a Denial of Service vulnerability in MongoDB that allows an authorized user to disable the MongoDB server by issuing a query against a collection containing an invalid compound wildcard index. This vulnerability is classified as a Type Confusion issue (CWE-704), where the server improperly handles type casting or incorrect type assumptions when processing certain query operations.

Critical Impact

An authenticated attacker with query privileges can crash the MongoDB server, causing service disruption for all connected applications and users relying on the database.

Affected Products

  • MongoDB Server (affected versions not specified in advisory)

Discovery Timeline

  • 2026-02-10 - CVE-2026-25613 published to NVD
  • 2026-02-10 - Last updated in NVD database

Technical Details for CVE-2026-25613

Vulnerability Analysis

This vulnerability stems from improper handling of invalid compound wildcard indexes within MongoDB's query processing engine. When an authorized user executes a query against a collection that contains a malformed or invalid compound wildcard index, the server fails to properly validate or handle the index structure, leading to a crash condition.

The attack requires network access and authenticated credentials with at least basic query privileges on the target collection. While user interaction is not required, the attacker must have legitimate access to issue queries, which limits the attack surface to authenticated users within the database environment.

The impact is confined to availability—there is no unauthorized data access or modification. However, a successful exploitation results in complete service disruption, affecting all database operations and connected applications.

Root Cause

The root cause is a Type Confusion vulnerability (CWE-704) in MongoDB's index processing logic. When the query engine encounters a compound wildcard index that contains invalid or unexpected type configurations, the server fails to properly cast or validate the index metadata. This results in the server attempting to process data structures in an incompatible manner, triggering an unhandled exception that crashes the database service.

Compound wildcard indexes are a complex feature that combines multiple field paths with wildcard operators. The vulnerability likely exists in the code path that validates and interprets these index definitions during query planning or execution phases.

Attack Vector

The attack vector is network-based, requiring the attacker to have authenticated access to the MongoDB instance. The attack flow involves:

  1. The attacker identifies or creates a collection with an invalid compound wildcard index
  2. The attacker issues a query that causes the query engine to access or evaluate the malformed index
  3. The server encounters the type confusion condition during index processing
  4. The unhandled exception causes the MongoDB server process to terminate

This vulnerability does not require any user interaction beyond the attacker's own actions, and the attack complexity is low once the prerequisite access is obtained. Additional details regarding the specific query patterns and index configurations that trigger this condition can be found in the MongoDB Jira Issue SERVER-113685.

Detection Methods for CVE-2026-25613

Indicators of Compromise

  • Unexpected MongoDB server crashes or restarts without clear system resource issues
  • Database logs showing unhandled exceptions related to index processing or query planning
  • Evidence of queries targeting collections with complex or unusual compound wildcard indexes
  • Repeated authentication from specific users followed by server availability issues

Detection Strategies

  • Monitor MongoDB server logs for crash events, particularly those mentioning index-related errors or type confusion conditions
  • Implement alerting on unexpected mongod process terminations or restart patterns
  • Audit query patterns from authenticated users, especially those targeting collections with wildcard indexes
  • Review index definitions across collections to identify potentially malformed compound wildcard indexes

Monitoring Recommendations

  • Enable verbose logging for index operations and query planning phases
  • Configure process monitoring to alert on MongoDB daemon crashes with automatic restart detection
  • Implement database availability monitoring with rapid alerting for service interruptions
  • Track authentication events correlated with server stability metrics to identify potential malicious actors

How to Mitigate CVE-2026-25613

Immediate Actions Required

  • Review all compound wildcard indexes in production databases for validity and proper configuration
  • Audit user permissions to ensure query access is limited to necessary accounts only
  • Implement monitoring for server crashes and unusual query patterns
  • Consider temporarily restricting access to collections with complex wildcard indexes until patches are applied

Patch Information

MongoDB has acknowledged this issue in Jira Issue SERVER-113685. Administrators should monitor the official MongoDB security advisories and release notes for patch availability. Apply the security update as soon as it becomes available through official MongoDB distribution channels.

Workarounds

  • Audit and validate all compound wildcard indexes in the database, removing or recreating any that appear malformed
  • Restrict database user privileges to the minimum necessary, limiting who can execute arbitrary queries
  • Implement network-level access controls to limit which systems can connect to the MongoDB instance
  • Consider using MongoDB's authentication and authorization features to enforce stricter access policies on sensitive collections

Administrators can audit existing indexes using the MongoDB shell:

bash
# List all indexes in the current database to audit for compound wildcard indexes
mongo --eval "db.getCollectionNames().forEach(function(c) { print('Collection: ' + c); printjson(db[c].getIndexes()); })"

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.04%

  • 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-704
  • Technical References
  • MongoDB Jira Issue SERVER-113685
  • Related CVEs
  • CVE-2026-1849: MongoDB Server DOS Vulnerability

  • CVE-2026-25612: MongoDB Server DoS Vulnerability

  • CVE-2026-1850: MongoDB Query Planner DoS Vulnerability

  • CVE-2026-25611: MongoDB Server DOS Vulnerability
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
  • English
  • 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