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

CVE-2026-6914: MongoDB Server DoS Vulnerability

CVE-2026-6914 is a denial of service vulnerability in MongoDB Server caused by malformed BSON object checksums. This vulnerability can lead to server unavailability. This article covers technical details, affected versions, and mitigation.

Published: April 30, 2026

CVE-2026-6914 Overview

CVE-2026-6914 is an Integer Underflow vulnerability (CWE-191) in MongoDB Server that can cause a Denial of Service condition. Computing the MD5 checksum of a malformed BSON object under specific conditions may cause loss of availability in the MongoDB server. This vulnerability allows authenticated attackers with network access to disrupt database operations by sending specially crafted BSON objects.

Critical Impact

Authenticated attackers can exploit this vulnerability to cause complete loss of availability of MongoDB database servers, potentially disrupting critical applications and services relying on the affected database infrastructure.

Affected Products

  • MongoDB Server v8.2 (all versions)
  • MongoDB Server v8.1 (all versions)
  • MongoDB Server v8.0 versions prior to 8.0.21
  • MongoDB Server v7.0 versions prior to 7.0.32

Discovery Timeline

  • 2026-04-29 - CVE CVE-2026-6914 published to NVD
  • 2026-04-29 - Last updated in NVD database

Technical Details for CVE-2026-6914

Vulnerability Analysis

This vulnerability stems from an integer underflow condition (CWE-191) that occurs when MongoDB Server processes malformed BSON (Binary JSON) objects during MD5 checksum computation. When a specially crafted BSON document is submitted to the server, the checksum calculation routine may encounter unexpected size values that trigger an integer underflow, leading to memory access violations or infinite loops that result in server unavailability.

The vulnerability requires low privileges to exploit, meaning an authenticated user with basic database access can trigger the condition. While the vulnerability does not allow for data confidentiality or integrity breaches, the availability impact is significant as it can render the entire MongoDB instance unresponsive.

Root Cause

The root cause is an integer underflow vulnerability (CWE-191) in the BSON document processing logic. When computing MD5 checksums, the server fails to properly validate BSON object size fields before performing arithmetic operations. Malformed BSON objects with manipulated size values can cause unsigned integer arithmetic to underflow, resulting in unexpected large values that corrupt memory calculations or cause resource exhaustion loops.

Attack Vector

The attack is network-based and requires low-privilege authentication to the MongoDB server. An attacker must be able to submit BSON documents to the database, which is a common operation available to most authenticated users. The attacker crafts a malformed BSON object with specific field manipulations that trigger the integer underflow during MD5 checksum computation.

The vulnerability is triggered when the server attempts to compute an MD5 checksum of the malformed BSON document. This can occur through various database operations including document insertion, aggregation pipelines, or other operations that invoke checksum validation. No user interaction is required beyond the initial authentication.

For technical details on the specific conditions that trigger this vulnerability, refer to the MongoDB Jira Ticket SERVER-119981.

Detection Methods for CVE-2026-6914

Indicators of Compromise

  • Unexpected MongoDB server crashes or restarts with memory-related errors in logs
  • Database connection timeouts or unresponsive MongoDB instances following document operations
  • Log entries indicating BSON parsing errors or checksum computation failures
  • Unusual patterns of authenticated connections submitting malformed documents

Detection Strategies

  • Monitor MongoDB server logs for BSON parsing errors and checksum-related exceptions
  • Implement alerting on sudden MongoDB service availability drops or restart patterns
  • Deploy network-level monitoring to detect anomalous BSON document sizes in MongoDB protocol traffic
  • Review authentication logs for accounts submitting documents immediately before server instability

Monitoring Recommendations

  • Configure MongoDB profiling to capture operations that precede server instability events
  • Set up real-time alerting for MongoDB process terminations and memory allocation failures
  • Monitor system metrics for sudden CPU spikes or memory exhaustion on MongoDB hosts
  • Implement application-level health checks that can detect MongoDB unavailability

How to Mitigate CVE-2026-6914

Immediate Actions Required

  • Upgrade MongoDB Server v8.0 to version 8.0.21 or later immediately
  • Upgrade MongoDB Server v7.0 to version 7.0.32 or later immediately
  • For MongoDB Server v8.1 and v8.2, consult MongoDB vendor channels for available patches
  • Review and restrict database user permissions to minimize attack surface from authenticated users

Patch Information

MongoDB has released patched versions to address this vulnerability:

  • MongoDB Server 8.0: Upgrade to version 8.0.21 or later
  • MongoDB Server 7.0: Upgrade to version 7.0.32 or later

For MongoDB Server versions 8.1 and 8.2, all versions are affected. Administrators should monitor the MongoDB Jira Ticket SERVER-119981 for patch availability announcements and consult MongoDB support for guidance on remediation options.

Workarounds

  • Implement strict input validation at the application layer before documents reach MongoDB
  • Restrict MongoDB network access to trusted application servers using firewall rules
  • Apply the principle of least privilege to database user accounts to limit potential attackers
  • Consider deploying MongoDB replica sets to maintain availability during potential exploitation attempts
bash
# Configuration example
# Restrict MongoDB to listen only on trusted interfaces
# Edit /etc/mongod.conf
net:
  bindIp: 127.0.0.1,192.168.1.100  # Only bind to localhost and trusted internal IP
  port: 27017

# Enable authentication if not already enabled
security:
  authorization: enabled

# Restart MongoDB after configuration changes
# systemctl restart mongod

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

  • 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-191
  • Technical References
  • MongoDB Jira Ticket SERVER-119981
  • Related CVEs
  • CVE-2026-8063: MongoDB Server DoS Vulnerability

  • CVE-2026-5170: MongoDB Server DoS Vulnerability

  • CVE-2026-4359: MongoDB C Driver DoS Vulnerability

  • CVE-2026-1849: MongoDB Server DOS Vulnerability
Default Legacy - Prefooter | 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
  • 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