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-2024-29027

CVE-2024-29027: Parse Server Cloud Function RCE Vulnerability

CVE-2024-29027 is a remote code execution vulnerability in Parse Server that allows attackers to crash the server or execute arbitrary code through invalid Cloud Function names. This article covers affected versions, impact, and mitigation.

Published: April 1, 2026

CVE-2024-29027 Overview

Parse Server, an open source backend that can be deployed to any infrastructure running Node.js, contains a critical code injection vulnerability in its Cloud Function and Cloud Job name handling. Prior to versions 6.5.5 and 7.0.0-alpha.29, calling an invalid Parse Server Cloud Function name or Cloud Job name crashes the server and may allow for code injection, internal store manipulation, or remote code execution.

Critical Impact

This vulnerability enables attackers to inject malicious properties into the internal store by crafting specially formed Cloud Function or Cloud Job names containing quote characters, potentially leading to remote code execution on affected Parse Server instances.

Affected Products

  • Parse Server versions prior to 6.5.5
  • Parse Server 7.0.0-alpha.1 through 7.0.0-alpha.28
  • All Parse Server deployments running on Node.js infrastructure without input sanitization

Discovery Timeline

  • March 19, 2024 - CVE-2024-29027 published to NVD
  • December 17, 2025 - Last updated in NVD database

Technical Details for CVE-2024-29027

Vulnerability Analysis

The vulnerability exists in the getStore function within src/triggers.js, which handles Cloud Function and Cloud Job name resolution. The function fails to sanitize input names before processing them, allowing attackers to inject quote characters (single quotes, double quotes, or backticks) into the name parameter. This lack of input validation enables malicious users to inject properties into the internal store structure, bypassing expected control flow and potentially achieving code execution.

The attack can be performed remotely over the network without authentication, though exploitation requires specific conditions to be met, resulting in high attack complexity. When successfully exploited, the vulnerability affects the confidentiality, integrity, and availability of the Parse Server instance, with the potential for changed scope impacting other components beyond the vulnerable system.

Root Cause

The root cause is improper input validation (CWE-74: Injection) in the getStore function. The function accepts user-controlled Cloud Function and Cloud Job names and processes them through a path-splitting operation without first validating that the name does not contain special characters. Quote characters in the name can be leveraged to manipulate how the function constructs and accesses the internal store, enabling property injection attacks.

Attack Vector

An attacker can exploit this vulnerability by sending HTTP requests to the Parse Server with crafted Cloud Function or Cloud Job names containing injection characters. The network-based attack vector requires no user interaction, though the high complexity indicates specific conditions must be met for successful exploitation. The attack can result in:

  1. Server crash (Denial of Service)
  2. Internal store manipulation
  3. Code injection leading to potential remote code execution
javascript
// Security patch from src/triggers.js
function getStore(category, name, applicationId) {
  const invalidNameRegex = /['"`]/;
  if (invalidNameRegex.test(name)) {
    // Prevent a malicious user from injecting properties into the store
    return {};
  }

  const path = name.split('.');
  path.splice(-1); // remove last component
  applicationId = applicationId || Parse.applicationId;

Source: GitHub Commit 5ae6d6a

Detection Methods for CVE-2024-29027

Indicators of Compromise

  • Unexpected server crashes or restarts in Parse Server instances
  • HTTP requests to Cloud Function endpoints containing quote characters (', ", or backticks) in function names
  • Anomalous entries in server logs showing malformed Cloud Function or Cloud Job names
  • Unexplained modifications to internal application state or configuration

Detection Strategies

  • Monitor Parse Server logs for requests containing quote characters in Cloud Function or Cloud Job name parameters
  • Implement Web Application Firewall (WAF) rules to detect and block requests with injection patterns in function name fields
  • Deploy runtime application self-protection (RASP) to detect property injection attempts in Node.js applications
  • Set up alerting for Parse Server process crashes or unexpected terminations

Monitoring Recommendations

  • Enable verbose logging on Parse Server to capture all Cloud Function and Cloud Job invocation attempts
  • Configure centralized log aggregation to correlate potential attack patterns across multiple Parse Server instances
  • Implement application performance monitoring (APM) to detect anomalous server behavior indicative of exploitation attempts
  • Monitor for unusual network traffic patterns targeting Parse Server endpoints

How to Mitigate CVE-2024-29027

Immediate Actions Required

  • Upgrade Parse Server to version 6.5.5 or later for stable releases
  • Upgrade Parse Server to version 7.0.0-alpha.29 or later for alpha releases
  • Implement input validation at the API gateway or load balancer level to filter malicious requests
  • Review server logs for evidence of exploitation attempts prior to patching

Patch Information

The Parse Server maintainers have addressed this vulnerability by adding string sanitization for Cloud Function and Cloud Job names. The fix validates input names against a regex pattern that detects single quotes, double quotes, and backticks, returning an empty object instead of processing potentially malicious names.

Patched versions are available:

  • Parse Server 6.5.5 (stable)
  • Parse Server 7.0.0-alpha.29 (alpha)

For additional details, refer to the GitHub Security Advisory GHSA-6hh7-46r2-vf29.

Workarounds

  • Implement custom middleware to sanitize Cloud Function and Cloud Job names before they reach Parse Server
  • Deploy a reverse proxy or WAF with rules to block requests containing quote characters in function name parameters
  • Restrict network access to Parse Server endpoints to trusted sources only
  • Consider temporarily disabling Cloud Functions if they are not critical to operations until patching is complete
bash
# Example NGINX configuration to block malicious requests
location /parse/functions/ {
    # Block requests with quote characters in the URI
    if ($request_uri ~* "['\"` ]") {
        return 403;
    }
    proxy_pass http://parse-server:1337;
}

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.0

  • EPSS Probability1.90%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:H/PR:N/UI:N/S:C/C:H/I:H/A:H
  • Impact Assessment
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-74
  • Technical References
  • GitHub Release 6.5.5

  • GitHub Release 7.0.0-alpha.29
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Security Advisory GHSA-6hh7-46r2-vf29
  • Related CVEs
  • CVE-2023-36475: Parse Server Prototype Pollution RCE Flaw

  • 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