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-33421

CVE-2026-33421: Parse Server Auth Bypass Vulnerability

CVE-2026-33421 is an authentication bypass vulnerability in Parse Server's LiveQuery WebSocket interface that allows unauthorized access to protected data. This article covers technical details, affected versions, impact, and mitigation.

Published: March 27, 2026

CVE-2026-33421 Overview

CVE-2026-33421 is an Authorization Bypass vulnerability affecting Parse Server, an open source backend that can be deployed to any infrastructure running Node.js. The vulnerability exists in the LiveQuery WebSocket interface, which fails to properly enforce Class-Level Permission (CLP) pointer permissions (readUserFields and pointerFields). This allows any authenticated user to subscribe to LiveQuery events and receive real-time updates for all objects in classes protected by pointer permissions, regardless of whether the pointer fields on those objects point to the subscribing user.

Critical Impact

Authenticated attackers can bypass intended read access controls to access potentially sensitive data in real-time that is correctly restricted via the REST API.

Affected Products

  • Parse Server versions prior to 8.6.53
  • Parse Server versions 9.6.0-alpha1 through 9.6.0-alpha41
  • parseplatform parse-server for Node.js

Discovery Timeline

  • March 24, 2026 - CVE-2026-33421 published to NVD
  • March 25, 2026 - Last updated in NVD database

Technical Details for CVE-2026-33421

Vulnerability Analysis

The vulnerability stems from an incomplete implementation of Class-Level Permission (CLP) enforcement within Parse Server's LiveQuery functionality. While the REST API correctly restricts access based on pointer permissions (readUserFields and pointerFields), the LiveQuery WebSocket interface fails to apply these same access control checks when processing subscription requests.

When a user subscribes to a LiveQuery channel, the server should validate that the requesting user has appropriate permissions based on the CLP pointer fields. However, the vulnerable code path did not properly evaluate the return value from the _matchesCLP function, allowing all authenticated users to receive real-time updates regardless of whether they should have access to the data.

This creates a significant security gap where data that appears properly protected through the Parse Dashboard or REST API can be exfiltrated through the LiveQuery WebSocket connection.

Root Cause

The root cause is a logic error in src/LiveQuery/ParseLiveQueryServer.ts where the _matchesCLP function was called but its return value was not properly evaluated. The function would execute the CLP matching logic, but the result was discarded, and the code would proceed to push updates to subscribers regardless of whether the CLP check passed or failed.

The vulnerability is classified as CWE-863 (Incorrect Authorization), where the software does not perform or incorrectly performs an authorization check when an actor attempts to access a resource.

Attack Vector

An attacker can exploit this vulnerability over the network by authenticating with any valid user credentials and establishing a WebSocket connection to the LiveQuery endpoint. Once connected, the attacker subscribes to classes that use pointer-based permissions for access control. The server will then broadcast real-time object updates to the attacker even when the pointer fields on those objects do not reference the attacker's user.

This allows unauthorized access to potentially sensitive user data, private messages, personal information, or any other data protected by CLP pointer permissions.

typescript
// Security patch from src/LiveQuery/ParseLiveQueryServer.ts
// Source: https://github.com/parse-community/parse-server/commit/976dad109f3fe3fbd0a3a35ef62e7a5d35eb0bee

           const op = this._getCLPOperation(subscription.query);
           let res: any = {};
           try {
-            await this._matchesCLP(
+            const matchesCLP = await this._matchesCLP(
               classLevelPermissions,
               message.currentParseObject,
               client,
               requestId,
               op
             );
+            if (matchesCLP === false) {
+              return null;
+            }
             const isMatched = await this._matchesACL(acl, client, requestId);
             if (!isMatched) {
               return null;

Detection Methods for CVE-2026-33421

Indicators of Compromise

  • Unusual volume of WebSocket connections to the LiveQuery endpoint from individual user accounts
  • Authenticated users subscribing to classes or tables they should not have access to
  • Multiple LiveQuery subscriptions from a single session attempting to access different protected classes
  • Log entries showing LiveQuery subscription requests for classes with CLP pointer permissions enabled

Detection Strategies

  • Monitor WebSocket connection patterns for anomalous subscription behavior across protected classes
  • Implement logging for all LiveQuery subscription requests and correlate with CLP configurations
  • Review access logs for users receiving data updates from objects where pointer fields do not reference their user ID
  • Deploy application-level monitoring to detect discrepancies between REST API access patterns and LiveQuery subscriptions

Monitoring Recommendations

  • Enable verbose logging for the LiveQuery subsystem to capture subscription requests and data push events
  • Set up alerts for authenticated users subscribing to multiple classes with CLP pointer permissions in rapid succession
  • Monitor for data exfiltration patterns through WebSocket connections
  • Audit existing LiveQuery subscriptions against expected access patterns based on your application's permission model

How to Mitigate CVE-2026-33421

Immediate Actions Required

  • Upgrade Parse Server to version 8.6.53 or later for the stable branch
  • Upgrade to version 9.6.0-alpha.42 or later if using the alpha release track
  • Review and audit any classes using CLP pointer permissions (readUserFields and pointerFields) for potential data exposure
  • Consider temporarily disabling LiveQuery for sensitive classes until the patch is applied

Patch Information

Parse Server maintainers have released patched versions addressing this vulnerability. The fix ensures that the return value from _matchesCLP is properly evaluated, and connections that fail the CLP pointer permission check are denied access to the data stream.

Relevant resources:

  • GitHub Security Advisory GHSA-fph2-r4qg-9576
  • Patch Commit for stable branch
  • Patch Commit for alpha branch

Workarounds

  • Disable LiveQuery functionality entirely if it is not required for your application
  • Move sensitive data protected by pointer permissions to separate classes and disable LiveQuery subscriptions for those classes
  • Implement additional application-layer access controls before processing LiveQuery events
  • Use ACL-based permissions instead of CLP pointer permissions where possible, as ACL checks were correctly enforced
bash
# Configuration example - Disable LiveQuery for specific classes in Parse Server configuration
# In your Parse Server initialization, avoid adding sensitive classes to liveQuery.classNames

# Example Parse Server config (JavaScript)
# const api = new ParseServer({
#   ...
#   liveQuery: {
#     classNames: ['PublicClass', 'AnotherSafeClass'], // Exclude classes with pointer permissions
#   }
# });

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

  • Vulnerability Details
  • TypeAuth Bypass

  • Vendor/TechParse Server

  • SeverityHIGH

  • CVSS Score7.1

  • EPSS Probability0.01%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:H/VI:N/VA:N/SC:N/SI:N/SA:N/E:X/CR:X/IR:X/AR:X/MAV:X/MAC:X/MAT:X/MPR:X/MUI:X/MVC:X/MVI:X/MVA:X/MSC:X/MSI:X/MSA:X/S:X/AU:X/R:X/V:X/RE:X/U:X
  • Impact Assessment
  • ConfidentialityLow
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-863
  • Technical References
  • GitHub Pull Request #10250

  • GitHub Pull Request #10252
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Commit Fix

  • GitHub Security Advisory GHSA-fph2-r4qg-9576
  • Related CVEs
  • CVE-2026-34373: Parse Server GraphQL Auth Bypass Flaw

  • CVE-2026-34532: Parse Server Auth Bypass Vulnerability

  • CVE-2026-34574: Parse Server Auth Bypass Vulnerability

  • CVE-2026-34595: Parse Server Auth Bypass 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