Join the Cyber Forum: Threat Intel on May 12, 2026 to learn how AI is reshaping threat defense.Join the Virtual Cyber Forum: Threat IntelRegister Now
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-25610

CVE-2026-25610: MongoDB $geoNear DoS Vulnerability

CVE-2026-25610 is a denial of service vulnerability in MongoDB where authorized users can crash the server using $geoNear pipeline with invalid index hints. This article covers technical details, affected versions, and mitigations.

Published: February 13, 2026

CVE-2026-25610 Overview

CVE-2026-25610 is a denial of service vulnerability in MongoDB Server that allows an authorized user to trigger a server crash by running a $geoNear aggregation pipeline with certain invalid index hints. This vulnerability stems from improper assertion handling (CWE-617) when processing malformed geospatial query parameters.

Critical Impact

Authorized users can crash the MongoDB server, causing service disruption and potential data availability issues for all connected applications and services.

Affected Products

  • MongoDB Server (specific versions not disclosed in advisory)

Discovery Timeline

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

Technical Details for CVE-2026-25610

Vulnerability Analysis

This vulnerability is classified as CWE-617 (Reachable Assertion), which occurs when the MongoDB server encounters an assertion failure during the processing of geospatial queries. The $geoNear aggregation stage is designed to return documents sorted by proximity to a specified point, requiring appropriate geospatial indexes. When an authorized user provides invalid index hints to this pipeline stage, the server fails to properly validate or handle the malformed input, triggering an internal assertion that crashes the server process.

The network-accessible nature of this vulnerability means any authenticated user with query privileges can potentially exploit it remotely without any user interaction required.

Root Cause

The root cause of this vulnerability lies in inadequate input validation within the $geoNear pipeline stage's index hint processing logic. When the server receives an invalid index hint for a geospatial query, it encounters an unexpected state that triggers a reachable assertion. Rather than gracefully handling the error condition and returning an appropriate error message to the client, the assertion causes the entire server process to terminate.

This represents a classic case of defensive programming failure where assertions intended for development-time debugging remain active in production code paths, creating a denial of service attack surface.

Attack Vector

The attack can be executed by any authenticated user with permissions to run aggregation pipelines against the database. The attacker constructs a $geoNear aggregation query with specially crafted invalid index hints. When the MongoDB server processes this query, it encounters the assertion failure and crashes.

The attack requires only network access to the MongoDB instance and valid authentication credentials with basic query permissions. No special privileges or complex chaining of vulnerabilities is necessary to exploit this issue.

For technical details on the specific invalid index hint patterns that trigger this vulnerability, refer to the MongoDB Server Issue Tracker.

Detection Methods for CVE-2026-25610

Indicators of Compromise

  • Unexpected MongoDB server process terminations or restarts
  • Assertion failure messages in MongoDB server logs related to $geoNear or index hint processing
  • Unusual aggregation pipeline queries with $geoNear stages containing malformed or unexpected index hints
  • Repeated authentication attempts followed by server crashes from the same client

Detection Strategies

  • Monitor MongoDB server logs for assertion failures (SIGABRT signals or assertion messages)
  • Implement query auditing to track all $geoNear aggregation pipeline executions
  • Set up alerting for unexpected server process restarts or terminations
  • Review authentication logs for patterns of access preceding crash events

Monitoring Recommendations

  • Configure MongoDB monitoring tools to alert on server availability gaps
  • Enable the database profiler to capture slow or suspicious aggregation queries
  • Implement health checks that detect rapid server restart cycles
  • Use SentinelOne Singularity platform to monitor for anomalous process behavior and unexpected service terminations

How to Mitigate CVE-2026-25610

Immediate Actions Required

  • Review and restrict database user permissions to limit who can execute aggregation pipelines
  • Implement application-level validation of index hints before passing to MongoDB
  • Enable MongoDB authentication and authorization if not already configured
  • Monitor for exploitation attempts using the detection strategies outlined above

Patch Information

Refer to the MongoDB Server Issue Tracker for official patch information and updated versions. Apply the vendor-provided security patches as soon as they become available. Ensure your MongoDB deployment is updated to a patched version that addresses this assertion failure vulnerability.

Workarounds

  • Restrict network access to MongoDB servers using firewall rules and network segmentation
  • Limit the use of $geoNear aggregation pipelines to trusted applications only
  • Implement a proxy or middleware layer that validates aggregation queries before forwarding to MongoDB
  • Configure automatic server restart and monitoring to minimize downtime impact if exploitation occurs
bash
# Example: Restrict MongoDB network access via firewall
# Allow connections only from trusted application servers
iptables -A INPUT -p tcp --dport 27017 -s 10.0.1.0/24 -j ACCEPT
iptables -A INPUT -p tcp --dport 27017 -j DROP

# Enable MongoDB authorization in mongod.conf
# security:
#   authorization: enabled

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechN/A

  • 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 Server Issue Tracker
  • Latest CVEs
  • CVE-2025-49454: TinySalt Path Traversal Vulnerability

  • CVE-2025-48261: MultiVendorX Information Disclosure Flaw

  • CVE-2025-32119: CardGate WooCommerce SQL Injection Flaw

  • CVE-2025-26879: s2Member Plugin Reflected XSS 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