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

CVE-2026-27804: Parse Server Auth Bypass Vulnerability

CVE-2026-27804 is an authentication bypass flaw in Parse Server allowing attackers to forge Google authentication tokens and access any user account. This article covers technical details, affected versions, and mitigation.

Published: February 27, 2026

CVE-2026-27804 Overview

Parse Server, an open source backend that can be deployed to any infrastructure running Node.js, contains a critical authentication bypass vulnerability in its Google authentication adapter. Prior to versions 8.6.3 and 9.1.1-alpha.4, an unauthenticated attacker can forge a Google authentication token using alg: "none" to log in as any user linked to a Google account, without knowing their credentials. This JWT algorithm confusion attack affects all deployments with Google authentication enabled.

Critical Impact

Unauthenticated attackers can bypass authentication and impersonate any user with a linked Google account by exploiting JWT algorithm confusion, potentially compromising all user accounts in affected deployments.

Affected Products

  • Parse Server versions prior to 8.6.3
  • Parse Server versions prior to 9.1.1-alpha.4
  • All Parse Server deployments with Google authentication enabled

Discovery Timeline

  • 2026-02-26 - CVE CVE-2026-27804 published to NVD
  • 2026-02-26 - Last updated in NVD database

Technical Details for CVE-2026-27804

Vulnerability Analysis

This vulnerability is classified under CWE-327 (Use of a Broken or Risky Cryptographic Algorithm). The root issue lies in how Parse Server's Google authentication adapter processes JWT tokens. The adapter trusts the algorithm specified in the JWT header rather than enforcing a specific cryptographic algorithm.

When a JWT token is received, the vulnerable code extracts both the kid (key ID) and alg (algorithm) from the token header. An attacker can craft a malicious JWT with alg: "none", which instructs the verification process to skip signature validation entirely. This allows the attacker to forge tokens claiming to be any user with a linked Google account.

The vulnerability requires no authentication and can be exploited remotely over the network. Successful exploitation results in complete bypass of authentication controls, allowing attackers to gain high-level access to user accounts and potentially sensitive data stored within the Parse Server instance.

Root Cause

The vulnerability stems from the Google authentication adapter's custom JWT verification logic that reads the algorithm from the untrusted JWT header. Instead of hardcoding the expected RS256 algorithm used by Google's identity services, the code allowed the attacker-controlled header to dictate which algorithm to use for signature verification. When alg: "none" is specified, no cryptographic verification occurs, and the token is accepted as valid regardless of its signature.

Attack Vector

The attack is network-based and requires no prior authentication or user interaction. An attacker can exploit this vulnerability by:

  1. Identifying a Parse Server instance with Google authentication enabled
  2. Crafting a malicious JWT token with alg: "none" in the header
  3. Including the target user's Google account identifier in the token payload
  4. Sending the forged token to the Parse Server authentication endpoint
  5. Gaining authenticated access as the target user
javascript
// Security patch showing the fix (Source: GitHub Commit)
// Before: Algorithm extracted from untrusted token header
-  const { kid: keyId, alg: algorithm } = authUtils.getHeaderFromToken(token);
// After: Only key ID extracted, algorithm is hardcoded to RS256
+  const { kid: keyId } = authUtils.getHeaderFromToken(token);
   const ONE_HOUR_IN_MS = 3600000;
   let jwtClaims;

Source: GitHub Commit Fix

Detection Methods for CVE-2026-27804

Indicators of Compromise

  • Authentication requests containing JWT tokens with alg: "none" or alg: "None" in the header
  • Unusual authentication patterns from unexpected IP addresses or geolocations for known user accounts
  • Successful Google authentication events without corresponding Google-side login activity
  • JWT tokens lacking valid cryptographic signatures being processed successfully

Detection Strategies

  • Monitor authentication logs for JWT tokens with non-standard or absent algorithm specifications
  • Implement Web Application Firewall (WAF) rules to detect and block JWTs containing "alg":"none" patterns
  • Enable verbose logging on Parse Server authentication adapters to capture JWT header details
  • Cross-reference Google authentication events with Google Workspace or Cloud Identity audit logs

Monitoring Recommendations

  • Set up alerts for authentication anomalies including multiple successful logins from disparate locations
  • Monitor Parse Server error logs for JWT validation failures that may indicate exploitation attempts
  • Implement rate limiting on authentication endpoints to slow potential automated attacks
  • Enable SentinelOne Singularity Platform to detect suspicious authentication patterns and potential account takeover attempts

How to Mitigate CVE-2026-27804

Immediate Actions Required

  • Upgrade Parse Server to version 8.6.3 or 9.1.1-alpha.4 immediately
  • Audit authentication logs for signs of exploitation prior to patching
  • Review all user accounts for unauthorized access or suspicious activity
  • If unable to upgrade immediately, disable Google authentication until patching is possible

Patch Information

The fix has been released in Parse Server versions 8.6.3 and 9.1.1-alpha.4. The patch implements two critical changes:

  1. Hardcoded Algorithm Enforcement: The expected RS256 algorithm is now hardcoded instead of being read from the JWT header
  2. Improved Key Verification: The Google adapter's custom key fetcher has been replaced with jwks-rsa library which properly rejects unknown key IDs

For more details, refer to the GitHub Security Advisory GHSA-4q3h-vp4r-prv2 and the official releases at Parse Server 8.6.3 and Parse Server 9.3.1-alpha.4.

Workarounds

  • Disable Google authentication in Parse Server configuration until upgrade is possible
  • Implement additional authentication layers such as MFA for critical accounts
  • Deploy network-level controls to restrict access to authentication endpoints
  • Use a reverse proxy to filter requests containing suspicious JWT patterns
bash
# Configuration example - Disable Google authentication temporarily
# In your Parse Server configuration file or environment variables
PARSE_SERVER_AUTH_PROVIDERS='{"google":{"enabled":false}}'

# Or in parse-server-config.json
# Set "google" adapter to disabled until patch is applied

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

  • SeverityCRITICAL

  • CVSS Score9.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:N/VC:H/VI:H/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-327
  • Technical References
  • GitHub Commit Update

  • GitHub Commit Fix

  • GitHub Release 8.6.3

  • GitHub Release 9.3.1-alpha.4

  • GitHub Security Advisory GHSA-4q3h-vp4r-prv2
  • 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