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

CVE-2026-31800: Parse-server Auth Bypass Vulnerability

CVE-2026-31800 is an authentication bypass flaw in Parseplatform Parse-server that allows attackers to access internal classes without master key authentication. This article covers technical details, affected versions, and fixes.

Published: March 13, 2026

CVE-2026-31800 Overview

Parse Server, an open source backend that can be deployed to any infrastructure running Node.js, contains a critical authentication bypass vulnerability in versions prior to 9.5.2-alpha.12 and 8.6.25. The vulnerability allows unauthorized access to the _GraphQLConfig and _Audience internal classes through the generic REST API routes /classes/_GraphQLConfig and /classes/_Audience without requiring master key authentication.

This flaw bypasses the master key enforcement that exists on the dedicated /graphql-config and /push_audiences endpoints, effectively exposing sensitive configuration and audience data to unauthenticated attackers.

Critical Impact

An attacker can read, modify, and delete GraphQL configuration and push audience data without authentication, potentially compromising application integrity and enabling further attacks on dependent systems.

Affected Products

  • Parse Server versions prior to 8.6.25 (stable branch)
  • Parse Server versions prior to 9.5.2-alpha.12 (alpha branch)
  • All Parse Server 9.5.2 alpha versions from alpha1 through alpha11

Discovery Timeline

  • 2026-03-10 - CVE-2026-31800 published to NVD
  • 2026-03-11 - Last updated in NVD database

Technical Details for CVE-2026-31800

Vulnerability Analysis

This vulnerability is classified under CWE-862 (Missing Authorization), which occurs when a software component fails to perform authorization checks when an actor attempts to access a resource or perform an action. In this case, Parse Server exposes internal classes through generic REST API routes without enforcing the same authentication requirements applied to their dedicated endpoints.

The root issue lies in an inconsistency between how Parse Server handles authentication for internal classes. While the dedicated endpoints /graphql-config and /push_audiences properly require master key authentication, the generic class routes /classes/_GraphQLConfig and /classes/_Audience do not inherit or enforce these same restrictions. This creates an authentication bypass where attackers can access the same underlying data through an alternative, unprotected path.

Root Cause

The vulnerability stems from incomplete authorization enforcement across Parse Server's REST API architecture. Internal classes prefixed with underscore (_GraphQLConfig, _Audience) were not properly protected when accessed through the generic /classes/ route pattern. The authorization middleware that validates master key requirements on dedicated endpoints was not consistently applied to the generic class access pattern, creating a security gap.

Attack Vector

The attack can be executed remotely over the network with low complexity. An unauthenticated attacker can directly access the vulnerable endpoints without any user interaction requirements. The exploitation path involves:

  1. Identifying a Parse Server instance exposed to the network
  2. Sending HTTP requests to /classes/_GraphQLConfig or /classes/_Audience endpoints
  3. Reading, modifying, or deleting sensitive configuration data without providing master key credentials

The vulnerability can be exploited through simple HTTP requests to the REST API endpoints. An attacker targeting a Parse Server instance would send GET, PUT, or DELETE requests to the /classes/_GraphQLConfig or /classes/_Audience endpoints. Without proper authentication enforcement, these requests would be processed as if they came from an authorized user, allowing full CRUD operations on the internal class data.

For detailed technical information, see the GitHub Security Advisory GHSA-7xg7-rqf6-pw6c.

Detection Methods for CVE-2026-31800

Indicators of Compromise

  • Unexpected HTTP requests to /classes/_GraphQLConfig or /classes/_Audience endpoints without master key headers
  • Unauthorized modifications to GraphQL configuration settings
  • Anomalous changes to push audience data or configurations
  • Access logs showing unauthenticated requests to internal class endpoints

Detection Strategies

  • Monitor Parse Server access logs for requests targeting _GraphQLConfig and _Audience class routes
  • Implement alerting for any requests to internal class endpoints that lack proper master key authentication headers
  • Review audit logs for unexpected changes to GraphQL configuration or push audience records
  • Deploy web application firewall (WAF) rules to detect and alert on access patterns targeting internal classes

Monitoring Recommendations

  • Enable detailed request logging on Parse Server instances to capture all API access attempts
  • Configure SIEM rules to correlate unauthenticated access attempts to internal class endpoints
  • Implement baseline monitoring for GraphQL configuration changes and alert on deviations
  • Regularly audit Parse Server configurations and compare against known-good states

How to Mitigate CVE-2026-31800

Immediate Actions Required

  • Upgrade Parse Server to version 8.6.25 or later (stable branch)
  • Upgrade Parse Server to version 9.5.2-alpha.12 or later (alpha branch)
  • Audit existing GraphQL configuration and push audience data for unauthorized modifications
  • Review access logs for evidence of exploitation attempts

Patch Information

Parse Platform has released security patches addressing this vulnerability:

  • Stable Branch: Version 8.6.25
  • Alpha Branch: Version 9.5.2-alpha.12

For complete details on the security fix and additional guidance, refer to the GitHub Security Advisory GHSA-7xg7-rqf6-pw6c.

Workarounds

  • If immediate patching is not possible, implement network-level access controls to restrict access to the Parse Server API
  • Configure a reverse proxy or WAF to block unauthenticated requests to /classes/_GraphQLConfig and /classes/_Audience endpoints
  • Temporarily disable public access to the Parse Server instance until the patch can be applied
  • Monitor and alert on any access attempts to internal class endpoints while awaiting upgrade
bash
# Example nginx configuration to block access to internal classes
location ~ ^/parse/classes/_(?:GraphQLConfig|Audience) {
    # Only allow requests with valid master key header
    if ($http_x_parse_master_key = "") {
        return 403;
    }
    proxy_pass http://parse-server:1337;
}

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 Score8.8

  • EPSS Probability0.08%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:L/VI:H/VA:L/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
  • AvailabilityLow
  • CWE References
  • CWE-862
  • Technical References
  • GitHub Release v8.6.25

  • GitHub Release v9.5.2-alpha.12
  • Vendor Resources
  • GitHub Security Advisory GHSA-7xg7-rqf6-pw6c
  • Related CVEs
  • CVE-2026-39381: Parse Server Auth Bypass Vulnerability

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