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-2026-32098

CVE-2026-32098: Parse Server Information Disclosure Flaw

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

Published: March 13, 2026

CVE-2026-32098 Overview

Parse Server, an open source backend that can be deployed to any infrastructure that can run Node.js, contains an information disclosure vulnerability in its LiveQuery subscription handling. Prior to versions 9.6.0-alpha.9 and 8.6.35, an attacker can exploit LiveQuery subscriptions to infer the values of protected fields without directly receiving them. By subscribing with a WHERE clause that references a protected field (including via dot-notation or $regex), the attacker can observe whether LiveQuery events are delivered for matching objects. This creates a boolean oracle that leaks protected field values.

Critical Impact

Attackers can bypass protectedFields security controls and infer sensitive data values through boolean oracle attacks on LiveQuery subscriptions.

Affected Products

  • Parse Server versions prior to 9.6.0-alpha.9
  • Parse Server versions prior to 8.6.35
  • Any Parse Server deployment with both protectedFields configured in Class-Level Permissions and LiveQuery enabled

Discovery Timeline

  • 2026-03-11 - CVE-2026-32098 published to NVD
  • 2026-03-12 - Last updated in NVD database

Technical Details for CVE-2026-32098

Vulnerability Analysis

This vulnerability is classified as CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). The flaw exists in how Parse Server processes LiveQuery subscriptions that contain WHERE clause filters referencing protected fields.

Parse Server provides a protectedFields mechanism within Class-Level Permissions (CLP) to prevent certain fields from being returned in query results to unauthorized users. However, the LiveQuery system fails to properly enforce these protections when evaluating subscription filters. An attacker can craft subscription queries that reference protected fields, and by observing whether LiveQuery events are delivered, can determine if objects match their filter criteria—effectively creating a side-channel attack.

The attack vector is network-based and requires no authentication or user interaction. The vulnerability affects confidentiality by allowing unauthorized access to protected field values, though integrity and availability are not impacted.

Root Cause

The root cause is insufficient enforcement of Class-Level Permission protectedFields restrictions within the LiveQuery subscription evaluation logic. When a client subscribes to LiveQuery events with a WHERE clause, the server evaluates object changes against this filter before pushing updates. The server should reject or sanitize subscription filters that reference protected fields, but instead processes them normally, allowing attackers to infer protected values based on whether events are delivered.

Attack Vector

The attack exploits Parse Server's LiveQuery real-time subscription feature through a boolean oracle technique. An attacker subscribes to a class with protected fields configured, using carefully crafted WHERE clauses that test specific values or patterns in protected fields.

For example, an attacker could use $regex operators or exact match conditions on a protected field like socialSecurityNumber. By iterating through possible values and observing which subscriptions receive LiveQuery events when target objects are modified, the attacker can systematically extract protected field values character by character or through binary search patterns.

The attack requires the following conditions:

  • Target class has protectedFields configured in Class-Level Permissions
  • LiveQuery is enabled for the target class
  • Attacker can establish WebSocket connections for LiveQuery subscriptions
  • Objects in the target class are being created, updated, or deleted (triggering LiveQuery events)

Detection Methods for CVE-2026-32098

Indicators of Compromise

  • Unusual volume of LiveQuery subscription requests from single clients or IP addresses
  • LiveQuery subscriptions containing WHERE clauses with $regex operators targeting sensitive field names
  • Patterns of rapid subscription/unsubscription cycles that may indicate enumeration attempts
  • WebSocket connections making multiple subscription requests with incrementally varying filter conditions

Detection Strategies

  • Monitor Parse Server logs for LiveQuery subscription requests that reference known protected field names
  • Implement rate limiting on LiveQuery subscription creation to slow enumeration attacks
  • Audit Class-Level Permissions configurations to identify classes with both protectedFields and LiveQuery enabled
  • Deploy network monitoring to detect high-frequency WebSocket subscription patterns

Monitoring Recommendations

  • Enable verbose logging for LiveQuery subscription events including the full WHERE clause
  • Set up alerts for subscription queries that include pattern-matching operators ($regex, $in) on protected fields
  • Monitor for abnormal LiveQuery connection patterns such as many short-lived subscriptions
  • Review WebSocket connection metadata for suspicious client behavior patterns

How to Mitigate CVE-2026-32098

Immediate Actions Required

  • Upgrade Parse Server to version 9.6.0-alpha.9 or 8.6.35 immediately
  • Audit all classes to identify those with both protectedFields and LiveQuery enabled
  • Consider temporarily disabling LiveQuery for classes containing highly sensitive protected fields until patches are applied
  • Review recent LiveQuery subscription logs for signs of exploitation

Patch Information

Parse Server has released security patches addressing this vulnerability. Organizations should upgrade to the fixed versions as soon as possible:

  • Version 8.6.35: Stable release with the security fix - GitHub Parse Server Release 8.6.35
  • Version 9.6.0-alpha.9: Alpha release with the security fix - GitHub Parse Server Release 9.6.0-alpha.9

For complete details on the vulnerability and remediation, see the GitHub Security Advisory GHSA-j7mm-f4rv-6q6q.

Workarounds

  • Disable LiveQuery for classes that have protectedFields configured until the patch can be applied
  • Implement application-level filtering to reject LiveQuery subscriptions that reference protected field names
  • Use network-level controls to restrict LiveQuery WebSocket access to trusted clients only
  • Consider moving highly sensitive data to separate classes without LiveQuery enabled

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

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/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-200
  • Technical References
  • GitHub Parse Server Release 8.6.35

  • GitHub Parse Server Release 9.6.0-alpha.9

  • GitHub Security Advisory GHSA-j7mm-f4rv-6q6q
  • Related CVEs
  • CVE-2026-39321: Parse Server Information Disclosure Flaw

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

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

  • CVE-2026-33429: 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