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-2023-36475

CVE-2023-36475: Parse Server Prototype Pollution RCE Flaw

CVE-2023-36475 is a prototype pollution vulnerability in Parse Server that enables remote code execution via the MongoDB BSON parser. This article covers the technical details, affected versions, and patches.

Published: February 4, 2026

CVE-2023-36475 Overview

CVE-2023-36475 is a critical remote code execution vulnerability affecting Parse Server, an open source backend that can be deployed to any infrastructure running Node.js. The vulnerability allows an attacker to leverage a prototype pollution sink to trigger remote code execution through the MongoDB BSON parser. This flaw exists in versions prior to 5.5.2 and 6.2.1, enabling unauthenticated attackers to execute arbitrary code on vulnerable Parse Server instances over the network.

Critical Impact

Unauthenticated remote code execution via prototype pollution in MongoDB BSON parser allows complete server compromise with no user interaction required.

Affected Products

  • Parse Server versions prior to 5.5.2
  • Parse Server versions 6.x prior to 6.2.1
  • parseplatform parse-server (Node.js deployments)

Discovery Timeline

  • 2023-06-28 - CVE-2023-36475 published to NVD
  • 2024-11-21 - Last updated in NVD database

Technical Details for CVE-2023-36475

Vulnerability Analysis

This vulnerability (CWE-1321: Improperly Controlled Modification of Object Prototype Attributes) stems from insufficient validation of user-controlled input that flows into the MongoDB BSON parser. Prototype pollution occurs when an attacker can inject properties into JavaScript object prototypes, which are then inherited by all objects in the application. In this case, the Parse Server's database controller failed to properly sanitize incoming update operations, allowing malicious payloads to pollute object prototypes and ultimately achieve code execution through the BSON parser's handling of these polluted objects.

The vulnerability is exploitable over the network without authentication or user interaction, and successful exploitation grants the attacker complete control over the confidentiality, integrity, and availability of the affected system.

Root Cause

The root cause lies in the DatabaseController.js file where update operations were processed without checking for prohibited keywords that could be used to manipulate object prototypes. The Parse Server did not validate that incoming data did not contain prototype pollution payloads such as __proto__, constructor, or prototype properties before passing them to the MongoDB BSON parser.

Attack Vector

The attack vector is network-based, targeting Parse Server API endpoints that process database update operations. An attacker crafts malicious JSON payloads containing prototype pollution properties and sends them to the server. When the server processes these payloads through the MongoDB BSON parser, the polluted prototypes enable arbitrary code execution. The attack requires no authentication, no special privileges, and no user interaction.

javascript
// Security patch in src/Controllers/DatabaseController.js
// Source: https://github.com/parse-community/parse-server/commit/3dd99dd80e27e5e1d99b42844180546d90c7aa90

    validateOnly: boolean = false,
    validSchemaController: SchemaController.SchemaController
  ): Promise<any> {
+    try {
+      Utils.checkProhibitedKeywords(this.options, update);
+    } catch (error) {
+      return Promise.reject(new Parse.Error(Parse.Error.INVALID_KEY_NAME, error));
+    }
    const originalQuery = query;
    const originalUpdate = update;
    // Make a copy of the object, so we don't mutate the incoming data.

The patch introduces a call to Utils.checkProhibitedKeywords() that validates incoming update data for prototype pollution payloads before processing, rejecting any requests containing malicious properties.

Detection Methods for CVE-2023-36475

Indicators of Compromise

  • Unexpected properties in database objects containing __proto__, constructor, or prototype keys
  • Unusual Parse Server crashes or unexpected behavior following API requests
  • Suspicious POST requests to Parse Server endpoints with nested objects containing prototype pollution patterns
  • Evidence of arbitrary command execution from the Node.js process running Parse Server

Detection Strategies

  • Monitor Parse Server API endpoints for requests containing prototype pollution patterns (__proto__, constructor.prototype, etc.) in JSON payloads
  • Implement Web Application Firewall (WAF) rules to detect and block prototype pollution attack signatures
  • Enable verbose logging on Parse Server to capture and analyze incoming request payloads
  • Deploy runtime application self-protection (RASP) solutions to detect prototype pollution attempts

Monitoring Recommendations

  • Review Parse Server access logs for unusual patterns in update operation requests
  • Set up alerts for INVALID_KEY_NAME errors after patching, which indicate blocked exploitation attempts
  • Monitor system resources and process spawning from the Node.js Parse Server process
  • Implement network-level monitoring for outbound connections from the Parse Server that could indicate post-exploitation activity

How to Mitigate CVE-2023-36475

Immediate Actions Required

  • Upgrade Parse Server to version 5.5.2 or 6.2.1 immediately
  • If immediate patching is not possible, consider temporarily restricting network access to Parse Server endpoints
  • Review server logs for indicators of past exploitation attempts
  • Audit MongoDB collections for evidence of prototype pollution artifacts

Patch Information

Parse Platform has released security patches in versions 5.5.2 and 6.2.1 that address this vulnerability. The fix introduces validation of incoming data through a checkProhibitedKeywords utility function that rejects requests containing prototype pollution payloads. Organizations should upgrade to these patched versions immediately.

Patch commits are available at:

  • GitHub Commit for v5.5.x
  • GitHub Commit for v6.2.x

For detailed information, see the GitHub Security Advisory GHSA-462x-c3jw-7vr6.

Workarounds

  • Implement a reverse proxy or WAF rule to filter requests containing prototype pollution patterns in JSON bodies
  • Restrict Parse Server API access to trusted IP ranges until patching can be completed
  • Deploy network segmentation to limit the blast radius of potential compromise
  • Consider running Parse Server in a containerized environment with restricted capabilities
bash
# Example: Restricting Parse Server access with iptables until patching
# Allow only trusted IP ranges to access Parse Server port
iptables -A INPUT -p tcp --dport 1337 -s 10.0.0.0/8 -j ACCEPT
iptables -A INPUT -p tcp --dport 1337 -j DROP

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

  • Vulnerability Details
  • TypeRCE

  • Vendor/TechParse Server

  • SeverityCRITICAL

  • CVSS Score9.8

  • EPSS Probability7.55%

  • 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
  • Technical References
  • GitHub Release 5.5.2

  • GitHub Release 6.2.1
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Commit Changes

  • GitHub Issue Discussion

  • GitHub Issue Discussion

  • GitHub Security Advisory GHSA-462x-c3jw-7vr6
  • Related CVEs
  • CVE-2024-29027: Parse Server Cloud Function RCE Vulnerability

  • CVE-2022-39396: Parse Server RCE Vulnerability via Pollution

  • CVE-2022-24760: Parse Server RCE Vulnerability

  • CVE-2026-39321: Parse Server Information Disclosure Flaw
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