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

CVE-2026-34595: Parse Server Auth Bypass Vulnerability

CVE-2026-34595 is an authentication bypass flaw in Parse Server that allows authenticated users to bypass protectedFields via LiveQuery subscriptions. This article covers technical details, affected versions, and patches.

Published: April 2, 2026

CVE-2026-34595 Overview

Parse Server, an open source backend that can be deployed to any infrastructure running Node.js, contains an authorization bypass vulnerability in its LiveQuery subscription handling. Prior to versions 8.6.70 and 9.7.0-alpha.18, an authenticated user with find class-level permission can bypass the protectedFields class-level permission setting on LiveQuery subscriptions by exploiting improper type validation of query operators.

Critical Impact

Authenticated attackers can infer protected field values through a binary oracle attack, potentially exposing sensitive user data configured as protected fields in the Parse Server schema.

Affected Products

  • Parse Server versions prior to 8.6.70
  • Parse Server 9.7.0-alpha1 through 9.7.0-alpha17
  • Any Node.js infrastructure running vulnerable Parse Server versions

Discovery Timeline

  • March 31, 2026 - CVE-2026-34595 published to NVD
  • April 2, 2026 - Last updated in NVD database

Technical Details for CVE-2026-34595

Vulnerability Analysis

This vulnerability stems from a type confusion weakness (CWE-843) in Parse Server's LiveQuery implementation. The protected-field guard mechanism fails to properly validate the type of values passed to logical query operators ($or, $and, $nor). When these operators receive an "array-like" object (a plain object with numeric keys and a length property) instead of a proper JavaScript array, the validation logic is bypassed entirely.

The subscription event firing mechanism can then be leveraged as a binary oracle. By crafting specific queries targeting protected fields and observing whether subscription events fire, an attacker can systematically infer the values stored in protected fields through repeated queries. This transforms a simple type confusion issue into a data exfiltration vector.

Root Cause

The root cause lies in insufficient input validation within the LiveQuery query constraint handling. The code assumed that logical operators ($or, $and, $nor) would always receive array types, but JavaScript's type coercion allows "array-like" objects to pass through certain checks while behaving differently during iteration. The Array.isArray() check was missing, allowing attackers to supply malformed operator values that bypass the protected-field filtering logic.

Attack Vector

An authenticated attacker with find class-level permissions can exploit this vulnerability remotely over the network. The attack requires:

  1. Valid authentication credentials with find permissions on the target class
  2. Knowledge of protected field names in the schema
  3. Ability to create LiveQuery subscriptions

The attacker constructs subscription queries using array-like objects instead of arrays for logical operators, then monitors subscription events to determine if protected field values match test values.

typescript
// Security patch in src/LiveQuery/ParseLiveQueryServer.ts
// Source: https://github.com/parse-community/parse-server/commit/f63fd1a3fe0a7c1c5fe809f01b0e04759e8c9b98

     if (typeof where !== 'object' || where === null) {
       return;
     }
+    for (const op of ['$or', '$and', '$nor']) {
+      if (where[op] !== undefined && !Array.isArray(where[op])) {
+        throw new Parse.Error(Parse.Error.INVALID_QUERY, `${op} must be an array`);
+      }
+      if (Array.isArray(where[op])) {
+        where[op].forEach((subQuery: any) => {
+          this._validateQueryConstraints(subQuery);
+        });
+      }
+    }
     for (const key of Object.keys(where)) {
       const constraint = where[key];
       if (typeof constraint === 'object' && constraint !== null) {

Detection Methods for CVE-2026-34595

Indicators of Compromise

  • Unusual patterns of LiveQuery subscription creation with malformed query operators
  • High volume of subscription requests from single authenticated users targeting classes with protected fields
  • Query payloads containing $or, $and, or $nor operators with object values instead of arrays
  • Subscription events showing systematic probing patterns against protected field values

Detection Strategies

  • Monitor Parse Server logs for subscription requests containing non-array values in logical operators
  • Implement application-level logging to track LiveQuery subscription patterns by authenticated user
  • Deploy web application firewall rules to detect and block malformed query payloads targeting Parse Server endpoints
  • Review Parse Server access logs for repeated subscription create/delete cycles from the same session

Monitoring Recommendations

  • Enable detailed logging for LiveQuery operations in Parse Server configuration
  • Set up alerts for abnormal subscription activity rates per user session
  • Monitor for error patterns related to query validation failures after patching
  • Implement rate limiting on LiveQuery subscription creation endpoints

How to Mitigate CVE-2026-34595

Immediate Actions Required

  • Upgrade Parse Server to version 8.6.70 or later for stable releases
  • Upgrade Parse Server to version 9.7.0-alpha.18 or later for alpha channel
  • Review access logs for evidence of exploitation attempts prior to patching
  • Audit class-level permissions to ensure protected fields are properly configured

Patch Information

Parse Platform has released security patches addressing this vulnerability in two branches:

  • Stable Branch: Version 8.6.70 - GitHub Commit f63fd1a
  • Alpha Branch: Version 9.7.0-alpha.18 - GitHub Commit ffad0ec

The fix adds explicit Array.isArray() validation for $or, $and, and $nor operator values, throwing an INVALID_QUERY error when non-array values are detected. For detailed information, see the GitHub Security Advisory GHSA-mmg8-87c5-jrc2.

Workarounds

  • Restrict LiveQuery access by limiting which classes allow subscriptions through server configuration
  • Implement additional authentication requirements for LiveQuery connections at the application layer
  • Use network-level controls to limit LiveQuery access to trusted client applications only
  • Consider temporarily disabling LiveQuery functionality for classes containing sensitive protected fields until patching is complete
bash
# Configuration example - Upgrade Parse Server via npm
npm update parse-server@8.6.70

# Verify installed version
npm list parse-server

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

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:L/UI:N/VC:L/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-843
  • Vendor Resources
  • GitHub Commit Changes

  • GitHub Commit Updates

  • GitHub Pull Request #10350

  • GitHub Pull Request #10351

  • GitHub Security Advisory GHSA-mmg8-87c5-jrc2
  • 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-34224: 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