A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-2024-5629

CVE-2024-5629: MongoDB PyMongo Out-of-Bounds Vulnerability

CVE-2024-5629 is an out-of-bounds read flaw in the bson module of MongoDB PyMongo 4.6.2 and earlier that can expose application memory. This article covers technical details, affected versions, and mitigation.

Updated: January 22, 2026

CVE-2024-5629 Overview

An out-of-bounds read vulnerability exists in the bson module of PyMongo versions 4.6.2 and earlier. This flaw allows deserialization of malformed BSON data provided by a server to raise an exception that may contain arbitrary application memory. The vulnerability (CWE-125) could enable attackers to extract sensitive information from application memory through carefully crafted BSON responses.

Critical Impact

This out-of-bounds read vulnerability can expose sensitive application memory contents when processing malformed BSON data from a malicious MongoDB server, potentially leading to information disclosure and application crashes.

Affected Products

  • MongoDB PyMongo versions up to and including 4.6.2
  • Debian Linux 10.0 (with affected PyMongo packages)

Discovery Timeline

  • June 5, 2024 - CVE-2024-5629 published to NVD
  • November 21, 2024 - Last updated in NVD database

Technical Details for CVE-2024-5629

Vulnerability Analysis

The vulnerability resides in PyMongo's BSON deserialization logic within the bson module. When processing BSON (Binary JSON) data received from a MongoDB server, the library fails to properly validate buffer boundaries. An attacker controlling or impersonating a MongoDB server can craft malformed BSON documents that trigger out-of-bounds memory reads during deserialization.

The improper boundary checking means that when the parser encounters specially crafted BSON data with invalid length fields or malformed structures, it attempts to read beyond allocated memory buffers. This memory content is then exposed through exception messages that bubble up to the application layer.

Root Cause

The root cause is insufficient bounds checking in the BSON deserialization routines within PyMongo. The bson module does not adequately validate the length and structure fields embedded in BSON documents before attempting to read data. When malformed BSON with inconsistent or excessive length indicators is processed, the parser reads beyond the actual data buffer boundaries, accessing adjacent memory regions that may contain sensitive application data.

Attack Vector

The attack vector is network-based and requires user interaction. An attacker must position themselves as a MongoDB server or compromise an existing MongoDB server that the target PyMongo client connects to. The attack flow is as follows:

  1. The attacker establishes a malicious MongoDB server or performs a man-in-the-middle attack
  2. When the PyMongo client issues queries, the attacker responds with crafted BSON documents containing malformed length fields
  3. PyMongo's bson module attempts to deserialize the malformed data
  4. The deserialization process reads beyond buffer boundaries due to improper validation
  5. An exception is raised containing the out-of-bounds memory content
  6. If the exception is logged or displayed, the leaked memory becomes accessible to the attacker

The vulnerability mechanism involves the BSON parser trusting length fields within the binary format without proper boundary validation. When a BSON document specifies a string or binary data length that exceeds the actual buffer size, the parser continues reading into adjacent memory. For detailed technical information, refer to MongoDB Python Issue PYTHON-4305.

Detection Methods for CVE-2024-5629

Indicators of Compromise

  • Unexpected exceptions or error messages containing binary data or memory artifacts during MongoDB operations
  • Anomalous BSON parsing errors in application logs, particularly with unusual byte sequences in error messages
  • MongoDB connection attempts to unknown or untrusted server addresses
  • Application crashes during BSON deserialization with memory-related errors

Detection Strategies

  • Implement application-level monitoring for BSON deserialization exceptions that contain unusual data patterns
  • Deploy network monitoring to detect connections to unverified MongoDB servers or potential MITM attacks on MongoDB traffic
  • Conduct software composition analysis (SCA) to identify PyMongo versions 4.6.2 and earlier in your environment
  • Monitor for applications exhibiting unexpected memory disclosure behaviors during database operations

Monitoring Recommendations

  • Enable verbose logging for PyMongo operations and monitor for deserialization-related exceptions
  • Implement TLS/SSL certificate pinning for MongoDB connections to prevent server impersonation
  • Deploy runtime application self-protection (RASP) solutions capable of detecting memory access violations
  • Establish baseline network traffic patterns for MongoDB connections to identify anomalies

How to Mitigate CVE-2024-5629

Immediate Actions Required

  • Upgrade PyMongo to version 4.6.3 or later, which contains the fix for this vulnerability
  • Audit all applications and services using PyMongo to identify affected deployments
  • Ensure MongoDB connections use TLS/SSL with proper certificate validation to prevent server impersonation
  • Implement network segmentation to restrict MongoDB server connectivity to trusted endpoints only

Patch Information

MongoDB has addressed this vulnerability and released updated versions of PyMongo. The fix is tracked in MongoDB Python Issue PYTHON-4305. Debian has also released security updates as documented in the Debian LTS Announce June 2024 and Debian LTS Announce September 2024 advisories.

Organizations should update PyMongo packages through their package managers and verify the installed version is 4.6.3 or higher.

Workarounds

  • If immediate patching is not possible, implement strict network controls to ensure PyMongo only connects to known, trusted MongoDB servers
  • Enable TLS/SSL for all MongoDB connections and implement certificate validation to prevent man-in-the-middle attacks
  • Configure application exception handling to sanitize error messages before logging or displaying, preventing potential memory disclosure
  • Consider implementing a network-level proxy that validates BSON responses before passing them to the application
bash
# Configuration example
# Upgrade PyMongo to patched version
pip install --upgrade pymongo>=4.6.3

# Verify installed version
pip show pymongo | grep Version

# For Debian systems, update via apt
sudo apt update && sudo apt upgrade python3-pymongo

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechMongodb

  • SeverityHIGH

  • CVSS Score8.1

  • EPSS Probability0.09%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:R/S:U/C:H/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-125
  • Technical References
  • Debian LTS Announce June 2024

  • Debian LTS Announce September 2024
  • Vendor Resources
  • MongoDB Python Issue PYTHON-4305
  • Related CVEs
  • CVE-2026-9100: MongoDB C Driver GridFS DOS Vulnerability

  • CVE-2026-8843: MongoDB Server DOS Vulnerability

  • CVE-2026-8336: MongoDB Server DoS Vulnerability

  • CVE-2026-8201: MongoDB Use-After-Free 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