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

CVE-2026-33429: Parse Server Information Disclosure Flaw

CVE-2026-33429 is an information disclosure vulnerability in Parse Server that allows attackers to infer protected field values through LiveQuery event timing. This article covers technical details, affected versions, and patches.

Published: March 27, 2026

CVE-2026-33429 Overview

CVE-2026-33429 is an information disclosure vulnerability in Parse Server, an open source backend that can be deployed to any infrastructure running Node.js. The vulnerability exists in the LiveQuery feature, where an attacker can subscribe to LiveQuery with a watch parameter targeting a protected field. Although the protected field value is properly stripped from event payloads, the presence or absence of update events reveals whether the protected field changed, creating a binary oracle. For boolean protected fields, the timing of change events is equivalent to knowing the field value.

Critical Impact

Attackers can infer protected field values through a side-channel timing attack on LiveQuery subscriptions, potentially exposing sensitive boolean flags such as authentication states, premium account status, or feature toggles.

Affected Products

  • Parse Server versions prior to 8.6.54
  • Parse Server versions 9.6.0-alpha.1 through 9.6.0-alpha.42
  • Parseplatform Parse-server for Node.js

Discovery Timeline

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

Technical Details for CVE-2026-33429

Vulnerability Analysis

This vulnerability (CWE-203: Observable Discrepancy) represents a classic side-channel information disclosure attack. The flaw exists in how Parse Server's LiveQuery feature handles protected fields during subscription updates. While the implementation correctly strips protected field values from event payloads before transmission to clients, it fails to suppress the update events themselves when protected fields are modified.

This creates an observable discrepancy where an attacker monitoring LiveQuery subscriptions can determine when a protected field changes by simply observing whether an update event is emitted. For boolean protected fields, this timing-based oracle effectively reveals the field's actual value through inference—if an attacker knows a field toggled from false to true (or vice versa), they can deduce the current state.

Root Cause

The root cause lies in the LiveQuery event emission logic that does not account for whether an update affects only protected fields. The system emits update events based on any field modification, without considering that the mere presence of an event could leak information about protected field changes. The fix requires suppressing update events entirely when the only modified fields are protected, preventing the binary oracle attack vector.

Attack Vector

The attack is network-based and can be executed without authentication or user interaction. An attacker subscribes to LiveQuery for a specific object or class, specifying watch parameters that target protected fields. By monitoring the stream of update events and correlating them with other observable actions, the attacker can deduce:

  1. When protected boolean fields change state
  2. The current value of protected boolean fields (through inference from change timing)
  3. Patterns in protected field modifications that may reveal business logic or user behavior

The attack is particularly effective against boolean fields where the binary nature of the data matches the binary oracle (event/no-event) perfectly.

Detection Methods for CVE-2026-33429

Indicators of Compromise

  • Unusual LiveQuery subscription patterns targeting specific objects with protected fields
  • High volume of subscription requests from single IP addresses or sessions
  • LiveQuery subscriptions that specify watch parameters for fields that should not be publicly accessible
  • Correlation between subscription activity and protected field modification times

Detection Strategies

  • Monitor LiveQuery subscription requests for attempts to watch protected or sensitive fields
  • Implement rate limiting on LiveQuery subscription creation to prevent enumeration attacks
  • Log and alert on subscription patterns that target known protected field names across multiple objects
  • Review application logs for unusual subscription activity coinciding with sensitive data operations

Monitoring Recommendations

  • Enable detailed logging for LiveQuery subscription creation and field watch specifications
  • Set up alerts for subscription requests that include known protected field names in watch parameters
  • Monitor for sustained connections that receive minimal data but maintain long-lived subscriptions
  • Track client behavior patterns to identify reconnaissance or enumeration attempts

How to Mitigate CVE-2026-33429

Immediate Actions Required

  • Upgrade Parse Server to version 8.6.54 or later for stable releases
  • Upgrade Parse Server to version 9.6.0-alpha.43 or later for alpha releases
  • Review which fields are designated as protected and ensure they are appropriately configured
  • Audit existing LiveQuery subscriptions for potential exploitation attempts

Patch Information

Parse Platform has released security patches addressing this vulnerability. The fixes are available in the following commits:

  • Patch commit 0c0a0a5a37ca821d2553119f2cb3be35322eda4b
  • Patch commit c62eacaf38de86913f09240583448360b1cc8e67

For complete details, refer to the GitHub Security Advisory GHSA-qpc3-fg4j-8hgm.

Workarounds

  • Disable LiveQuery functionality entirely if not required for application functionality
  • Restrict LiveQuery subscriptions to authenticated users with appropriate access controls
  • Implement application-level filtering to prevent subscriptions targeting sensitive object classes
  • Consider moving highly sensitive boolean fields to separate classes with stricter access controls
bash
# Example: Update Parse Server to patched version
npm update parse-server@8.6.54

# Or for alpha channel users
npm update parse-server@9.6.0-alpha.43

# 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
  • TypeInformation Disclosure

  • Vendor/TechParse Server

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:P/PR:N/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-203
  • Technical References
  • GitHub Pull Request #10253

  • GitHub Pull Request #10254
  • Vendor Resources
  • GitHub Commit Change

  • GitHub Commit Change

  • GitHub Security Advisory GHSA-qpc3-fg4j-8hgm
  • Related CVEs
  • CVE-2026-34363: Parse Server Information Disclosure Flaw

  • CVE-2026-33323: Parse Server Information Disclosure Flaw

  • CVE-2026-33627: Parse Server Information Disclosure Flaw

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