The SentinelOne Annual Threat Report - A Defenders Guide from the FrontlinesThe SentinelOne Annual Threat ReportGet the Report
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-2026-8843

CVE-2026-8843: MongoDB Server DOS Vulnerability

CVE-2026-8843 is a denial of service flaw in MongoDB Server where creating specific index types on non-timeseries collections causes server crashes. This article covers technical details, affected versions, and mitigation.

Published: May 21, 2026

CVE-2026-8843 Overview

CVE-2026-8843 is a denial-of-service vulnerability in MongoDB Server affecting how the database handles specialized index types on incompatible collections. Creating a 2dsphere_bucket index on a non-timeseries bucket collection succeeds without error, but any subsequent document insert that triggers an index update crashes the server process. The same condition affects queryable_encrypted_range indices. The flaw is tracked under [CWE-617: Reachable Assertion] and requires only low-privileged authenticated access to exploit. An attacker with write permissions can reliably terminate the mongod process, disrupting database availability across all hosted applications.

Critical Impact

Authenticated low-privilege users can crash MongoDB Server instances by creating an invalid index and inserting a document, producing a denial-of-service condition that affects availability of all hosted databases.

Affected Products

  • MongoDB Server v7.0 versions prior to 7.0.32
  • MongoDB Server v8.0 versions prior to 8.0.21
  • MongoDB Server v8.2 versions prior to 8.2.6

Discovery Timeline

  • 2026-05-18 - CVE-2026-8843 published to NVD
  • 2026-05-18 - Last updated in NVD database

Technical Details for CVE-2026-8843

Vulnerability Analysis

The vulnerability resides in MongoDB Server's index validation logic. MongoDB exposes specialized internal index types, including 2dsphere_bucket and queryable_encrypted_range, which are designed for use with specific collection types such as timeseries bucket collections. The server fails to reject creation of these indices when the target collection is not a valid bucket collection. The invalid index persists in metadata without immediate consequence.

The crash occurs when a document insert triggers an index update against the malformed index. The server reaches an assertion that was not designed to be triggered through normal user input, causing mongod to terminate. This matches the [CWE-617] pattern of a reachable assertion converting an invalid state into a process abort.

Root Cause

The root cause is missing input validation during index creation. MongoDB does not verify that the collection type matches the requirements of the requested index variant. The assertion that protects internal invariants during index updates is therefore reachable from an authenticated user session that holds standard write privileges on a target collection.

Attack Vector

Exploitation requires network access to the MongoDB instance and authenticated credentials with permission to create indices and insert documents. The attacker creates a collection, issues an index creation command specifying 2dsphere_bucket or queryable_encrypted_range, and then inserts a document that triggers the index update path. The mongod process terminates, denying service to all clients connected to that instance. The vulnerability described in MongoDB Issue SERVER-116327 does not allow code execution or data disclosure.

Detection Methods for CVE-2026-8843

Indicators of Compromise

  • Unexpected mongod process terminations correlated with recent createIndex operations referencing 2dsphere_bucket or queryable_encrypted_range types.
  • MongoDB audit log entries showing index creation with these specialized types on collections that are not timeseries bucket collections.
  • Repeated client connection failures or replica set primary step-downs immediately following insert operations on collections with newly created indices.

Detection Strategies

  • Query the MongoDB system catalog for indices of type 2dsphere_bucket or queryable_encrypted_range on non-timeseries collections and flag any matches for review.
  • Enable MongoDB auditing for createIndex events and alert when specialized internal index types are requested by non-administrative accounts.
  • Correlate mongod crash events with the preceding command stream to identify the triggering insert and originating client.

Monitoring Recommendations

  • Monitor MongoDB server logs for assertion failures and abnormal process exits using a centralized logging platform.
  • Track index creation events across all replica set members and sharded clusters to detect unauthorized schema modifications.
  • Establish alerting on database availability metrics so that crash-driven outages are surfaced within seconds.

How to Mitigate CVE-2026-8843

Immediate Actions Required

  • Upgrade MongoDB Server to version 7.0.32, 8.0.21, or 8.2.6 or later as appropriate for your deployment branch.
  • Audit existing collections for indices of type 2dsphere_bucket or queryable_encrypted_range on non-timeseries collections and drop any that should not exist.
  • Review role assignments and remove createIndex privileges from accounts that do not require schema modification.

Patch Information

MongoDB has released fixed builds in versions 7.0.32, 8.0.21, and 8.2.6. The patches add validation that rejects creation of 2dsphere_bucket and queryable_encrypted_range indices on incompatible collection types. Refer to MongoDB Issue SERVER-116327 for the upstream fix details and changelog references.

Workarounds

  • Restrict the createIndex action to trusted administrative roles using MongoDB role-based access control until patching is complete.
  • Deploy MongoDB instances behind network controls that limit client access to known application hosts.
  • Configure replica sets with sufficient secondary members so that a single crashed primary does not result in extended outage.
bash
# Verify MongoDB Server version and check for vulnerable indices
mongosh --eval 'db.version()'
mongosh --eval 'db.adminCommand({listDatabases:1}).databases.forEach(function(d){db.getSiblingDB(d.name).getCollectionNames().forEach(function(c){db.getSiblingDB(d.name).getCollection(c).getIndexes().forEach(function(i){if(i["2dsphere_bucket"]||i["queryable_encrypted_range"]){print(d.name+"."+c+": "+i.name)}})})})'

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-617
  • Technical References
  • MongoDB Issue SERVER-116327
  • Related CVEs
  • CVE-2026-9100: MongoDB C Driver GridFS DOS Vulnerability

  • CVE-2026-8336: MongoDB Server DoS Vulnerability

  • CVE-2026-8199: MongoDB DoS Vulnerability via Bitwise Match

  • CVE-2026-8202: MongoDB Server DoS Vulnerability
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