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

CVE-2026-34224: Parse Server Auth Bypass Vulnerability

CVE-2026-34224 is an authentication bypass flaw in Parse Server that allows attackers to create multiple sessions using concurrent login requests, defeating MFA protections. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: April 2, 2026

CVE-2026-34224 Overview

Parse Server, an open source backend that can be deployed to any infrastructure that can run Node.js, contains a race condition vulnerability in its multi-factor authentication (MFA) implementation. Prior to versions 8.6.64 and 9.7.0-alpha.8, an attacker who possesses a valid authentication provider token and a single MFA recovery code or SMS one-time password can create multiple authenticated sessions by sending concurrent login requests via the authData login endpoint.

This vulnerability defeats the single-use guarantee of MFA recovery codes and SMS one-time passwords, allowing session persistence even after the legitimate user revokes detected sessions. The flaw stems from a Time-of-Check Time-of-Use (TOCTOU) race condition (CWE-367) in the authentication handling logic.

Critical Impact

Attackers can bypass single-use MFA token controls and establish persistent access to user accounts, maintaining unauthorized sessions even after legitimate session revocation attempts.

Affected Products

  • Parse Server versions prior to 8.6.64 (stable branch)
  • Parse Server versions 9.7.0-alpha1 through 9.7.0-alpha7
  • All Parse Server deployments using MFA with recovery codes or SMS OTP

Discovery Timeline

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

Technical Details for CVE-2026-34224

Vulnerability Analysis

The vulnerability exists in the authData login endpoint of Parse Server where MFA token validation and session creation are not handled atomically. When concurrent login requests are submitted with the same valid MFA recovery code or SMS one-time password, the server processes these requests in parallel without proper synchronization.

The root cause is a classic Time-of-Check Time-of-Use (TOCTOU) race condition. Between the moment Parse Server validates the MFA token and the moment it invalidates that token, multiple concurrent requests can pass the validation check and create separate authenticated sessions—all using the same single-use credential.

This vulnerability requires network access and depends on the attacker already possessing valid authentication provider tokens along with a single MFA recovery code or SMS OTP. The attack complexity is high due to the precise timing required for concurrent request submission, but successful exploitation allows for persistent unauthorized access.

Root Cause

The vulnerability is classified under CWE-367 (Time-of-Check Time-of-Use Race Condition). The RestWrite.js module in Parse Server did not properly capture and protect the original authData state before processing mutations during the login flow.

When processing authData login requests, the server would:

  1. Validate the MFA token against the stored user data
  2. Create a new authenticated session
  3. Invalidate the MFA token

The problem occurred because step 1 could complete for multiple concurrent requests before any of them reached step 3, allowing all requests to create valid sessions from a single-use token.

Attack Vector

The attack requires network access to the Parse Server authData login endpoint. An attacker must first obtain a valid authentication provider token (through legitimate means or prior compromise) and a single MFA recovery code or SMS one-time password. By sending multiple concurrent login requests with these credentials, the attacker can establish multiple authenticated sessions.

The security patch addresses this by capturing the original authData state before any mutations occur:

javascript
       // We are supposed to have a response only on LOGIN with authData, so we skip those
       // If we're not logging in, but just updating the current user, we can safely skip that part
       if (this.response) {
+        // Capture original authData before mutating userResult via the response reference
+        const originalAuthData = userResult?.authData
+          ? Object.fromEntries(
+            Object.entries(userResult.authData).map(([k, v]) =>
+              [k, v && typeof v === 'object' ? { ...v } : v]
+            )
+          )
+          : undefined;
+
         // Assign the new authData in the response
         Object.keys(mutatedAuthData).forEach(provider => {
           this.response.response.authData[provider] = mutatedAuthData[provider];

Source: GitHub Commit

Detection Methods for CVE-2026-34224

Indicators of Compromise

  • Multiple authenticated sessions created for the same user within milliseconds of each other
  • Login attempts with identical MFA recovery codes or SMS OTP values occurring in rapid succession
  • Unusual patterns of concurrent requests to the authData login endpoint from the same source
  • Session persistence for accounts where the legitimate user has attempted session revocation

Detection Strategies

  • Monitor authentication logs for concurrent login attempts with identical MFA credentials within short time windows (sub-second intervals)
  • Implement alerting on multiple successful MFA authentications for the same user account within a configurable threshold period
  • Analyze request timing patterns to the /parse/login and authData endpoints for signs of automated concurrent submissions

Monitoring Recommendations

  • Enable detailed logging for all MFA-related authentication events including timestamps with millisecond precision
  • Configure SIEM rules to correlate rapid successive session creation events per user account
  • Monitor for anomalous session counts per user that may indicate exploitation of this race condition

How to Mitigate CVE-2026-34224

Immediate Actions Required

  • Upgrade Parse Server to version 8.6.64 or later for stable deployments immediately
  • Upgrade Parse Server to version 9.7.0-alpha.8 or later for alpha branch deployments
  • Audit existing user sessions for signs of exploitation, particularly accounts with multiple concurrent session creation events
  • Review authentication logs for suspicious patterns of concurrent MFA token usage

Patch Information

Parse Platform has released security patches addressing this vulnerability. The fix ensures that the original authData state is captured before any mutations during the authentication flow, preventing the race condition that allowed MFA token reuse.

For detailed patch information, refer to:

  • GitHub Pull Request #10326 (stable branch)
  • GitHub Pull Request #10327 (alpha branch)
  • GitHub Security Advisory GHSA-w73w-g5xw-rwhf

Workarounds

  • Implement rate limiting on the authData login endpoint to prevent rapid concurrent authentication attempts
  • Add application-level mutex or locking mechanisms around MFA validation if immediate patching is not feasible
  • Consider temporarily disabling MFA recovery code functionality until the patch can be applied, relying on alternative recovery mechanisms
bash
# Configuration example for rate limiting (using nginx as reverse proxy)
# Add to your nginx configuration for Parse Server endpoints
limit_req_zone $binary_remote_addr zone=parse_auth:10m rate=2r/s;

location /parse/login {
    limit_req zone=parse_auth burst=5 nodelay;
    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

  • SeverityLOW

  • CVSS Score2.1

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:N/PR:H/UI:N/VC:N/VI:L/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
  • ConfidentialityHigh
  • IntegrityNone
  • AvailabilityNone
  • CWE References
  • CWE-367
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Pull Request #10326

  • GitHub Pull Request #10327

  • GitHub Security Advisory GHSA-w73w-g5xw-rwhf
  • Related CVEs
  • 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

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