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

CVE-2026-34373: Parse Server GraphQL Auth Bypass Flaw

CVE-2026-34373 is an authentication bypass flaw in Parse Server's GraphQL API that ignores origin restrictions, allowing unauthorized cross-origin requests. This article covers technical details, affected versions, and patches.

Published: April 2, 2026

CVE-2026-34373 Overview

CVE-2026-34373 is a Cross-Origin Resource Sharing (CORS) bypass vulnerability in Parse Server, an open-source backend framework designed to run on any infrastructure supporting Node.js. The vulnerability exists in the GraphQL API endpoint, which fails to respect the allowOrigin server configuration option and unconditionally permits cross-origin requests from any website. This creates a significant security gap where operators who have configured origin restrictions to control API access find their GraphQL endpoints exposed to unauthorized cross-origin interactions.

Critical Impact

Attackers can bypass configured CORS policies on Parse Server GraphQL endpoints, potentially enabling data exfiltration and unauthorized API interactions from malicious websites.

Affected Products

  • Parse Server versions prior to 8.6.66
  • Parse Server 9.7.0-alpha.1 through 9.7.0-alpha.9
  • parseplatform parse-server for Node.js

Discovery Timeline

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

Technical Details for CVE-2026-34373

Vulnerability Analysis

This vulnerability represents a classic Origin Validation Error (CWE-346) where the GraphQL API endpoint implementation diverges from the REST API in how it handles cross-origin requests. While the REST API properly enforces the allowOrigin configuration parameter set by server operators, the GraphQL API endpoint bypasses this security control entirely.

The inconsistency between API endpoints creates a dangerous scenario where administrators may believe their Parse Server deployment is protected by CORS restrictions, while the GraphQL interface remains fully accessible from any origin. This architectural oversight allows attackers to craft malicious web pages that can interact with the Parse Server GraphQL API on behalf of authenticated users who visit the attacker's site.

The attack requires user interaction, as victims must navigate to a malicious website while having an active session with the targeted Parse Server instance. Once on the malicious page, JavaScript code can make cross-origin requests to the vulnerable GraphQL endpoint, potentially accessing or modifying data within the scope of the victim's authenticated session.

Root Cause

The root cause of this vulnerability lies in the inconsistent implementation of CORS policy enforcement between the REST and GraphQL API handlers in Parse Server. The GraphQL endpoint was implemented without integrating the allowOrigin server configuration check that gates cross-origin requests in the REST API. This resulted in the GraphQL API handler unconditionally adding permissive CORS headers to all responses, regardless of the server's configured origin restrictions.

Attack Vector

The attack is network-based and requires user interaction. An attacker would host a malicious website containing JavaScript code designed to make cross-origin requests to a target Parse Server's GraphQL endpoint. When an authenticated user of the target Parse Server visits the malicious site, the attacker's code can execute GraphQL queries and mutations against the server. Because the GraphQL endpoint ignores CORS restrictions, the browser permits these cross-origin requests, potentially allowing the attacker to read sensitive data or perform actions on behalf of the victim user.

The exploitation scenario involves:

  1. Attacker identifies a Parse Server deployment using the vulnerable GraphQL API
  2. Attacker creates a malicious website with embedded JavaScript targeting the Parse Server endpoint
  3. Victim user with active Parse Server session visits the malicious website
  4. Malicious JavaScript executes GraphQL operations against the Parse Server
  5. Due to the CORS bypass, the browser allows these cross-origin requests to complete

Detection Methods for CVE-2026-34373

Indicators of Compromise

  • Unexpected cross-origin requests to the /graphql endpoint from unfamiliar referrer domains
  • GraphQL API access logs showing requests with Origin headers not matching configured allowOrigin values
  • Anomalous patterns of GraphQL queries originating from browser contexts with mismatched origins

Detection Strategies

  • Monitor web server logs for GraphQL endpoint requests where the Origin header doesn't match allowed domains
  • Implement application-level logging to flag cross-origin GraphQL requests that would have been blocked if CORS was properly enforced
  • Review network traffic patterns for unexpected external domains interacting with Parse Server GraphQL endpoints

Monitoring Recommendations

  • Enable detailed request logging on Parse Server to capture Origin headers for all GraphQL API calls
  • Set up alerts for GraphQL endpoint access from origins not on the configured allowlist
  • Periodically audit Parse Server configurations to verify CORS settings are correctly applied to all API endpoints

How to Mitigate CVE-2026-34373

Immediate Actions Required

  • Upgrade Parse Server to version 8.6.66 or later for stable releases
  • Upgrade Parse Server to version 9.7.0-alpha.10 or later for alpha releases
  • Audit current allowOrigin configurations to ensure desired restrictions are documented and ready to verify post-patch
  • Review GraphQL API access logs for any suspicious cross-origin activity prior to patching

Patch Information

Parse Community has released security patches addressing this vulnerability. The fixes ensure that the GraphQL API endpoint properly respects the allowOrigin server configuration option, bringing it in line with the REST API's CORS enforcement behavior.

For detailed patch information, refer to:

  • GitHub Security Advisory GHSA-q3p6-g7c4-829c
  • GitHub Pull Request #10334
  • GitHub Pull Request #10335

Security patch commits:

  • Commit 0347641507891d0013ec57f7c10f012064f41263
  • Commit 4dd0d3d8be1c39664c74ad10bb0abaa76bc41203

Workarounds

  • Temporarily disable the GraphQL API endpoint if not required for operations until patching is complete
  • Implement a reverse proxy or web application firewall (WAF) in front of Parse Server to enforce CORS policies at the network edge
  • Restrict network access to the GraphQL endpoint using firewall rules to limit which origins can reach the server
  • Consider implementing additional authentication requirements for GraphQL API access beyond session-based authentication
bash
# Example: Disable GraphQL API in Parse Server configuration
# In your Parse Server initialization, set:
# startGraphQLServer: false
# Or remove GraphQL-related configuration until patched

# Alternatively, use nginx to restrict GraphQL access by origin
# Add to nginx server block:
location /graphql {
    if ($http_origin !~* (https://allowed-origin\.com)) {
        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

  • SeverityMEDIUM

  • CVSS Score5.3

  • EPSS Probability0.02%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:N/VI:N/VA:N/SC:L/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-346
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Pull Request #10334

  • GitHub Pull Request #10335

  • GitHub Security Advisory GHSA-q3p6-g7c4-829c
  • Related CVEs
  • CVE-2026-34532: Parse Server Auth Bypass Vulnerability

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

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