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
    • 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-32770

CVE-2026-32770: Parse Server LiveQuery DoS Vulnerability

CVE-2026-32770 is a denial of service vulnerability in Parse Server that allows attackers to crash the server using invalid regex patterns in LiveQuery subscriptions. This article covers technical details, affected versions, and fixes.

Published: March 20, 2026

CVE-2026-32770 Overview

Parse Server, an open source backend that can be deployed to any infrastructure running Node.js, contains a Denial of Service vulnerability in its LiveQuery subscription handling. A remote attacker can crash the Parse Server by subscribing to a LiveQuery with an invalid regular expression pattern. When the invalid pattern reaches the regex engine during subscription matching, the server process terminates, causing denial of service for all connected clients.

Critical Impact

Remote attackers can cause complete service disruption by crashing the Parse Server process, affecting all connected clients and applications dependent on the backend service.

Affected Products

  • Parse Server versions prior to 8.6.43
  • Parse Server versions 9.6.0-alpha1 through 9.6.0-alpha18
  • All Parse Server deployments with LiveQuery enabled running vulnerable versions

Discovery Timeline

  • March 18, 2026 - CVE-2026-32770 published to NVD
  • March 19, 2026 - Last updated in NVD database

Technical Details for CVE-2026-32770

Vulnerability Analysis

This vulnerability is classified under CWE-248 (Uncaught Exception), indicating that the Parse Server fails to properly handle exceptions when processing malformed regular expression patterns in LiveQuery subscriptions. The flaw exists in the subscription matching logic where user-supplied regex patterns are passed directly to the JavaScript regex engine without validation.

When a client subscribes to a LiveQuery, they can specify query conditions including regular expression patterns for field matching. If an attacker provides a syntactically invalid regex pattern, the JavaScript regex engine throws an exception during the subscription matching phase. Because this exception is not caught, it propagates up and terminates the Node.js process entirely.

The vulnerability requires no authentication and can be exploited remotely over the network. While it does not compromise data confidentiality or integrity, the availability impact is significant as it affects all users connected to the Parse Server instance.

Root Cause

The root cause is twofold: insufficient input validation of regular expression patterns at subscription time, and the absence of defensive exception handling around the subscription matching logic. User-supplied regex patterns were trusted and used directly without first validating that they constitute valid regular expressions.

Attack Vector

An attacker can exploit this vulnerability by establishing a WebSocket connection to the LiveQuery server and sending a subscription request containing a malformed regular expression pattern. When the server attempts to compile and use this regex during subscription matching operations, the invalid pattern causes an uncaught exception that crashes the server process.

The attack is straightforward to execute as it only requires the ability to connect to the LiveQuery WebSocket endpoint. Since the vulnerability crashes the entire server process, a single malicious subscription can deny service to all legitimate users of the Parse Server instance.

Detection Methods for CVE-2026-32770

Indicators of Compromise

  • Unexpected Parse Server process terminations or restarts
  • Error logs containing regex-related exceptions or syntax errors
  • Unusual WebSocket subscription activity from unknown or suspicious client IPs
  • Repeated server crashes correlated with LiveQuery subscription events

Detection Strategies

  • Monitor Node.js process health and implement alerting on unexpected terminations
  • Analyze WebSocket traffic to LiveQuery endpoints for malformed subscription payloads
  • Review Parse Server logs for regex compilation errors or uncaught exception traces
  • Implement connection rate limiting and anomaly detection on LiveQuery subscriptions

Monitoring Recommendations

  • Configure process monitoring to detect and alert on Parse Server crashes
  • Enable verbose logging for LiveQuery subscription events to capture suspicious patterns
  • Set up network monitoring to identify unusual connection patterns to WebSocket endpoints
  • Deploy application performance monitoring (APM) to track server stability metrics

How to Mitigate CVE-2026-32770

Immediate Actions Required

  • Upgrade Parse Server to version 8.6.43 or 9.6.0-alpha.19 or later immediately
  • If immediate patching is not possible, disable LiveQuery functionality as a temporary workaround
  • Review access controls to limit who can establish LiveQuery subscriptions
  • Implement network-level protections to restrict access to LiveQuery endpoints

Patch Information

The Parse Server maintainers have released fixes in versions 8.6.43 and 9.6.0-alpha.19. The patches implement two protective measures: validation of regular expression patterns at subscription time to reject invalid patterns before they are stored, and a defense-in-depth try-catch mechanism that prevents any subscription matching error from crashing the server process.

For detailed information about the fix, refer to the GitHub Security Advisory GHSA-827p-g5x5-h86c. The specific code changes can be reviewed in Pull Request #10197 and Pull Request #10199.

Workarounds

  • Disable LiveQuery entirely if it is not required for your application functionality
  • Implement a reverse proxy or API gateway to filter and validate subscription requests before they reach Parse Server
  • Deploy Parse Server behind a web application firewall (WAF) with rules to detect malformed regex patterns
  • Use network segmentation to restrict LiveQuery access to trusted clients only
bash
# Disable LiveQuery in Parse Server configuration
# In your Parse Server initialization, remove or comment out LiveQuery configuration:
# liveQuery: {
#   classNames: ['Posts', 'Comments']
# }
# 
# Alternatively, upgrade to patched version:
npm update parse-server@8.6.43
# or for alpha channel:
npm update parse-server@9.6.0-alpha.19

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

  • Vulnerability Details
  • TypeDOS

  • Vendor/TechParse Server

  • SeverityHIGH

  • CVSS Score7.5

  • EPSS Probability0.10%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:N/I:N/A:H
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityHigh
  • CWE References
  • CWE-248
  • Technical References
  • GitHub Pull Request #10197

  • GitHub Pull Request #10199
  • Vendor Resources
  • GitHub Security Advisory GHSA-827p-g5x5-h86c
  • Related CVEs
  • CVE-2026-34573: Parse Server GraphQL DoS Vulnerability

  • CVE-2026-33498: Parse Server DoS Vulnerability

  • CVE-2026-33508: Parse Server LiveQuery DoS Vulnerability

  • CVE-2026-33538: Parse Server DOS Vulnerability
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