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

CVE-2026-1849: MongoDB Server DOS Vulnerability

CVE-2026-1849 is a denial of service vulnerability in MongoDB Server caused by out-of-memory failures when evaluating deeply nested documents. This article covers the technical details, affected versions, and mitigation strategies.

Published: February 13, 2026

CVE-2026-1849 Overview

CVE-2026-1849 is a denial of service vulnerability affecting MongoDB Server that can cause out-of-memory failures when processing expressions that produce deeply nested documents. The vulnerability exists in recursive functions where the server fails to periodically check the depth of expressions being evaluated, allowing malicious actors to exhaust server memory resources.

Critical Impact

Authenticated attackers can crash MongoDB Server instances by sending specially crafted queries that generate deeply nested document structures, leading to memory exhaustion and denial of service conditions.

Affected Products

  • MongoDB Server (specific affected versions pending vendor advisory)

Discovery Timeline

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

Technical Details for CVE-2026-1849

Vulnerability Analysis

This vulnerability is classified under CWE-674 (Uncontrolled Recursion), which describes scenarios where software fails to properly control recursive function calls, potentially leading to resource exhaustion. In the context of MongoDB Server, the issue manifests when evaluating expressions that produce deeply nested document structures.

The attack requires network access and low-privilege authentication to the MongoDB instance. Once authenticated, an attacker can submit queries containing expressions designed to trigger recursive evaluation without proper depth checks. As the recursion depth increases unchecked, memory consumption grows until the server exhausts available memory and crashes.

The impact is limited to availability—there is no data confidentiality or integrity breach—however, successful exploitation can render MongoDB services completely unavailable until the server is restarted.

Root Cause

The root cause lies in MongoDB's expression evaluation engine, which processes recursive functions without implementing periodic depth validation checks. When expressions generate deeply nested documents, the server continues processing without verifying that the nesting depth remains within safe operational limits. This architectural oversight allows unbounded recursion that consumes memory proportionally to the nesting depth until resources are exhausted.

Attack Vector

The attack vector is network-based and requires low-privilege authentication to the MongoDB instance. An attacker with valid credentials can craft malicious aggregation pipeline queries or other expression-based operations that intentionally produce deeply nested output structures.

The exploitation process involves:

  1. Authenticating to a vulnerable MongoDB Server instance with minimal privileges
  2. Submitting a query containing expressions designed to generate deeply nested documents
  3. The server processes the expression recursively without depth validation
  4. Memory consumption increases with each recursion level
  5. Eventually, the server exhausts available memory and crashes

For technical details on the specific expression patterns involved, see the MongoDB JIRA Issue SERVER-102364.

Detection Methods for CVE-2026-1849

Indicators of Compromise

  • Abnormal memory consumption spikes in MongoDB Server processes
  • Unexpected MongoDB service crashes or restarts without apparent cause
  • Query logs containing unusual expressions with deeply nested output patterns
  • Out-of-memory error messages in MongoDB server logs

Detection Strategies

  • Monitor MongoDB server memory utilization for sudden unexplained increases
  • Implement query analysis to detect expressions that may produce deeply nested documents
  • Configure alerting on MongoDB process crashes and unexpected restarts
  • Review authentication logs for suspicious access patterns preceding memory exhaustion events

Monitoring Recommendations

  • Deploy SentinelOne Singularity platform for real-time process behavior monitoring on MongoDB hosts
  • Enable MongoDB profiler to capture and analyze slow or resource-intensive queries
  • Implement memory threshold alerts at 80% and 90% utilization levels
  • Configure log aggregation to correlate memory events with query execution patterns

How to Mitigate CVE-2026-1849

Immediate Actions Required

  • Review the MongoDB JIRA Issue SERVER-102364 for vendor guidance and patch information
  • Monitor MongoDB servers for unusual memory consumption patterns
  • Implement network segmentation to limit MongoDB access to trusted hosts only
  • Review and restrict database user privileges to minimum necessary permissions
  • Consider implementing query timeouts and resource limits where supported

Patch Information

Patch details are tracked in the MongoDB JIRA Issue SERVER-102364. Organizations should monitor this issue for official patch releases and upgrade to a fixed version as soon as one becomes available. Until a patch is applied, implement the workarounds described below to reduce exposure.

Workarounds

  • Restrict network access to MongoDB instances using firewall rules and network segmentation
  • Implement application-level query validation to reject potentially malicious expressions before they reach the database
  • Configure resource limits at the operating system level to prevent complete system memory exhaustion
  • Use MongoDB's built-in resource management features to set memory limits where available
  • Temporarily disable or restrict access to features that allow arbitrary expression evaluation if not business-critical
bash
# Example: Restrict MongoDB access to specific IP ranges using iptables
iptables -A INPUT -p tcp --dport 27017 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 27017 -j DROP

# Example: Configure MongoDB to bind only to specific interfaces
# In mongod.conf:
# net:
#   bindIp: 127.0.0.1,10.0.1.100
#   port: 27017

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-674
  • Technical References
  • MongoDB JIRA Issue SERVER-102364
  • Related CVEs
  • CVE-2026-25612: MongoDB Server DoS Vulnerability

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