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

CVE-2026-4358: Database Use-After-Free Vulnerability

CVE-2026-4358 is a use-after-free memory vulnerability affecting database aggregation queries with $lookup operations. Authenticated users with write privileges can trigger this flaw. This article covers technical details, impact analysis, and mitigation strategies.

Published: March 20, 2026

CVE-2026-4358 Overview

A memory corruption vulnerability has been identified in MongoDB's slot-based execution (SBE) engine. The flaw occurs when a specially crafted aggregation query using the $lookup operator is executed by an authenticated user with write privileges. When an in-memory hash table is spilled to disk during query processing, the vulnerability can trigger a double-free or use-after-free memory condition, potentially leading to application crashes or memory corruption.

Critical Impact

Authenticated users with write privileges can exploit this memory corruption vulnerability to cause denial of service or potentially corrupt memory state in the MongoDB database server.

Affected Products

  • MongoDB Server (versions affected per SERVER-118849)
  • MongoDB deployments using the slot-based execution (SBE) engine
  • Environments where aggregation queries with $lookup are permitted

Discovery Timeline

  • 2026-03-17 - CVE CVE-2026-4358 published to NVD
  • 2026-03-18 - Last updated in NVD database

Technical Details for CVE-2026-4358

Vulnerability Analysis

This vulnerability falls into the Double Free (CWE-415) category of memory corruption vulnerabilities. The issue resides in MongoDB's slot-based execution (SBE) engine, which is designed to optimize query performance. When processing aggregation pipelines that include the $lookup stage, the engine maintains in-memory hash tables to facilitate join operations.

Under memory pressure conditions, these hash tables may be spilled to disk to manage resource consumption. During this spill operation, improper memory management leads to either a double-free condition (where memory is freed twice) or a use-after-free condition (where memory is accessed after being freed). Both scenarios can result in heap corruption, application instability, or crashes.

The attack requires an authenticated user with write privileges to craft and execute a malicious aggregation query. While the network attack vector makes this remotely exploitable, the requirement for authentication and specific privileges reduces the immediate exposure surface.

Root Cause

The root cause is improper memory lifecycle management within the SBE engine's hash table spill-to-disk functionality. When the engine transitions hash table data from memory to disk storage, the code path fails to correctly track memory ownership, resulting in either duplicate deallocation calls or continued access to freed memory regions. This represents a classic memory safety issue in the C++ codebase where pointer invalidation is not properly synchronized with memory operations.

Attack Vector

The attack vector is network-based and requires the following conditions:

  1. Authentication: The attacker must possess valid credentials to the MongoDB instance
  2. Write Privileges: The authenticated user must have write access permissions
  3. Query Construction: A specially crafted aggregation query using $lookup must be constructed to trigger the hash table spill condition
  4. Memory Pressure: The query must cause sufficient memory usage to trigger the spill-to-disk mechanism

The vulnerability is exploitable by submitting a malicious aggregation pipeline through MongoDB's query interface. The complexity involved in triggering the specific memory conditions means exploitation may require multiple attempts or specific environmental conditions.

Detection Methods for CVE-2026-4358

Indicators of Compromise

  • Unexpected MongoDB server crashes or restarts, particularly during aggregation query execution
  • Core dumps or crash logs indicating memory corruption in the SBE engine components
  • Abnormal aggregation queries with complex $lookup stages from unusual user accounts
  • Memory corruption error messages in MongoDB server logs

Detection Strategies

  • Monitor MongoDB server logs for crash events related to aggregation pipeline execution
  • Implement query auditing to track $lookup aggregation operations, especially those with unusual complexity
  • Deploy memory debugging tools (such as AddressSanitizer) in non-production environments to detect memory issues
  • Review authentication logs for accounts executing high volumes of complex aggregation queries

Monitoring Recommendations

  • Enable MongoDB profiling to capture slow or resource-intensive aggregation queries
  • Configure alerts for MongoDB process crashes or unexpected restarts
  • Monitor system memory usage patterns during aggregation operations
  • Implement log aggregation to correlate crash events with query execution patterns

How to Mitigate CVE-2026-4358

Immediate Actions Required

  • Review and restrict write privileges to only necessary users and applications
  • Audit existing aggregation queries for suspicious $lookup patterns
  • Consider temporarily disabling or limiting access to aggregation pipelines in high-risk environments
  • Monitor for any unusual query activity from authenticated users

Patch Information

MongoDB has tracked this issue in JIRA Issue SERVER-118849. Administrators should monitor this issue and MongoDB security advisories for official patch releases. Apply vendor patches as soon as they become available to remediate this vulnerability.

Workarounds

  • Implement strict role-based access control to limit write privileges to essential users only
  • Use MongoDB's query validation features to restrict complex aggregation patterns if supported
  • Consider deploying additional query filtering at the application layer to block suspicious $lookup operations
  • Enable authentication auditing to track and investigate unusual query patterns
  • Deploy network segmentation to limit exposure of MongoDB instances to untrusted networks

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

  • Vulnerability Details
  • TypeUse After Free

  • Vendor/TechN/A

  • SeverityMEDIUM

  • CVSS Score6.1

  • EPSS Probability0.06%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:L/UI:N/VC:L/VI:L/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
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-415
  • Technical References
  • MongoDB JIRA Issue SERVER-118849
  • Latest CVEs
  • CVE-2026-40322: SiYuan Knowledge Management RCE Vulnerability

  • CVE-2026-40318: SiYuan Path Traversal Vulnerability

  • CVE-2026-40259: SiYuan Auth Bypass Vulnerability

  • CVE-2026-40255: AdonisJS HTTP Server CSRF 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