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
    • 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-2023-3696

CVE-2023-3696: Mongoosejs Mongoose Prototype Pollution

CVE-2023-3696 is a prototype pollution vulnerability in Mongoosejs Mongoose affecting versions prior to 7.3.4. This flaw allows attackers to modify object prototypes. This article covers technical details, affected versions, and mitigation.

Published: February 4, 2026

CVE-2023-3696 Overview

CVE-2023-3696 is a critical Prototype Pollution vulnerability affecting the Mongoose ODM (Object Document Mapper) library for MongoDB and Node.js. This vulnerability exists in versions of Mongoose prior to 7.3.4 and allows attackers to manipulate the JavaScript Object prototype, potentially leading to remote code execution, denial of service, or authentication bypass in affected applications.

Prototype Pollution is a JavaScript-specific vulnerability class (CWE-1321) that occurs when attackers can inject properties into object prototypes. Since all JavaScript objects inherit from Object.prototype, polluting this prototype can have application-wide consequences, affecting every object in the runtime environment.

Critical Impact

Successful exploitation of this prototype pollution vulnerability can allow unauthenticated remote attackers to modify application behavior, bypass security controls, or achieve remote code execution through specially crafted input targeting the Mongoose document initialization process.

Affected Products

  • mongoosejs mongoose versions prior to 7.3.4
  • Applications using Mongoose ODM for Node.js and MongoDB
  • Node.js applications with user-controlled input processed through Mongoose schemas

Discovery Timeline

  • 2023-07-17 - CVE CVE-2023-3696 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-3696

Vulnerability Analysis

The vulnerability exists in Mongoose's document initialization function within lib/document.js. When processing document data, the _init function iterates over object keys without properly validating whether these keys correspond to dangerous prototype properties. This allows attackers to inject __proto__ or constructor as keys in document data, which can pollute the Object prototype when processed.

Prototype pollution attacks are particularly dangerous in Node.js applications because:

  1. Global Impact: Modifications to Object.prototype affect all objects in the application
  2. Persistence: Polluted properties remain until the application restarts
  3. Chain Attacks: Prototype pollution can enable secondary attacks like remote code execution when combined with certain gadgets in the application or its dependencies

Root Cause

The root cause of this vulnerability is insufficient input validation in Mongoose's document initialization logic. The _init function failed to sanitize property names before using them to set values on document objects. Specifically, the code did not check for and reject reserved JavaScript prototype properties (__proto__ and constructor) when iterating through keys during document initialization.

Attack Vector

The attack vector is network-based and requires no authentication or user interaction. An attacker can exploit this vulnerability by sending specially crafted JSON data to an application endpoint that processes the data through Mongoose. When the malicious document containing __proto__ or constructor properties is initialized, the prototype pollution occurs.

The security patch adds explicit checks to prevent prototype pollution:

javascript
 
   function _init(index) {
     i = keys[index];
+    // avoid prototype pollution
+    if (i === '__proto__' || i === 'constructor') {
+      return;
+    }
     path = prefix + i;
     schemaType = docSchema.path(path);
 

Source: GitHub Mongoose Commit

Detection Methods for CVE-2023-3696

Indicators of Compromise

  • Unexpected properties appearing on objects throughout the application
  • Application behavior changes without code modifications
  • Anomalous authentication bypasses or privilege escalations
  • HTTP requests containing __proto__ or constructor in JSON payloads
  • Unexplained crashes or errors related to object property access

Detection Strategies

  • Implement Web Application Firewall (WAF) rules to detect and block requests containing __proto__ or constructor in JSON bodies
  • Enable application-level logging to capture incoming request payloads for forensic analysis
  • Deploy runtime application self-protection (RASP) solutions that can detect prototype pollution attempts
  • Monitor for unexpected object property access patterns in application logs

Monitoring Recommendations

  • Set up alerts for HTTP requests containing prototype pollution payloads (__proto__, constructor.prototype)
  • Monitor application error logs for TypeError exceptions related to unexpected object properties
  • Implement dependency vulnerability scanning in CI/CD pipelines to detect vulnerable Mongoose versions
  • Use SentinelOne Singularity to monitor Node.js application runtime behavior for anomalous prototype modifications

How to Mitigate CVE-2023-3696

Immediate Actions Required

  • Upgrade Mongoose to version 7.3.4 or later immediately
  • Audit all application endpoints that accept user-controlled JSON input
  • Implement input validation to reject objects containing __proto__ or constructor properties
  • Review application dependencies for other prototype pollution vulnerabilities
  • Consider using Object.freeze(Object.prototype) as a temporary defensive measure in non-production environments

Patch Information

The vulnerability has been addressed in Mongoose version 7.3.4. The fix adds explicit checks in the _init function to skip processing of __proto__ and constructor keys, preventing prototype pollution during document initialization.

For detailed patch information, see the GitHub Mongoose Commit and the Huntr Bounty Report.

Workarounds

  • Implement middleware to sanitize all incoming JSON data, removing __proto__ and constructor properties before processing
  • Use JSON.parse() with a reviver function that filters dangerous keys
  • Apply strict schema validation to reject documents with unexpected properties
  • Consider using Object.create(null) for objects that will be populated with user data
bash
# Update Mongoose to patched version
npm update mongoose@7.3.4

# Or install specific patched version
npm install mongoose@^7.3.4

# Verify installed version
npm list mongoose

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

  • Vulnerability Details
  • TypeOther

  • Vendor/TechMongoosejs

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability0.31%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-1321
  • Vendor Resources
  • GitHub Mongoose Commit

  • Huntr Bounty Report
  • Related CVEs
  • CVE-2025-23061: Mongoosejs Mongoose SQLi Vulnerability

  • CVE-2024-53900: Mongoosejs Mongoose SQLi 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