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

CVE-2026-34215: Parse Server Auth Bypass Vulnerability

CVE-2026-34215 is an authentication bypass flaw in Parse Server that exposes MFA secrets and tokens, allowing attackers to defeat multi-factor authentication. This article covers technical details, affected versions, and patches.

Published: April 2, 2026

CVE-2026-34215 Overview

Parse Server is an open source backend that can be deployed to any infrastructure that can run Node.js. A sensitive data exposure vulnerability exists in the verify password endpoint, which returns unsanitized authentication data including MFA TOTP secrets, recovery codes, and OAuth access tokens. An attacker who knows a user's password can extract the MFA secret to generate valid MFA codes, effectively defeating multi-factor authentication protection.

Critical Impact

This vulnerability allows attackers with knowledge of a user's password to completely bypass MFA protections by extracting TOTP secrets and generating valid authentication codes.

Affected Products

  • Parse Server versions prior to 8.6.63
  • Parse Server versions 9.7.0-alpha1 through 9.7.0-alpha6
  • Applications deployed on Node.js infrastructure using affected Parse Server versions

Discovery Timeline

  • 2026-03-31 - CVE-2026-34215 published to NVD
  • 2026-04-01 - Last updated in NVD database

Technical Details for CVE-2026-34215

Vulnerability Analysis

This vulnerability is classified as CWE-200 (Exposure of Sensitive Information to an Unauthorized Actor). The verify password endpoint in Parse Server fails to properly sanitize authentication data before returning it in the response. When a user successfully authenticates via this endpoint, the server returns the complete user object including sensitive MFA configuration data such as TOTP secrets, recovery codes, and OAuth access tokens.

The attack requires knowledge of the target user's password, which may be obtained through credential stuffing, phishing, or other means. Once an attacker has the password and can access the verify password endpoint, they can extract the MFA secret and use it to generate valid TOTP codes, completely bypassing the additional security layer MFA is intended to provide.

Root Cause

The root cause lies in the handleVerifyPassword function within src/Routers/UsersRouter.js. While the function calls UsersRouter.removeHiddenProperties(user) to sanitize the user object, this sanitization was insufficient for authentication data. The authDataManager.runAfterFind() hook, which is responsible for properly filtering sensitive authentication data, was not being called before returning the response to the client.

Attack Vector

The vulnerability is exploitable over the network without user interaction. An attacker requires high-level privileges (knowledge of the target user's password) to exploit this vulnerability. The attack flow is:

  1. Attacker obtains target user's password through credential compromise
  2. Attacker sends a verify password request to the Parse Server endpoint
  3. Server returns unsanitized response containing MFA TOTP secrets
  4. Attacker uses extracted TOTP secret to generate valid MFA codes
  5. Attacker can now fully authenticate as the target user, bypassing MFA
javascript
// Security patch in src/Routers/UsersRouter.js
// Source: https://github.com/parse-community/parse-server/commit/770be8647424d92f5425c41fa81065ffbbb171ed

 
   handleVerifyPassword(req) {
     return this._authenticateUserFromRequest(req)
-      .then(user => {
+      .then(async user => {
         // Remove hidden properties.
         UsersRouter.removeHiddenProperties(user);
-
+        await req.config.authDataManager.runAfterFind(req, user.authData);
         return { response: user };
       })
       .catch(error => {

Detection Methods for CVE-2026-34215

Indicators of Compromise

  • Unusual volume of requests to the /verifyPassword endpoint from single IP addresses
  • Multiple verify password requests for the same user account in short succession
  • Successful MFA authentications from unexpected IP addresses or geolocations following verify password requests
  • Authentication patterns showing password verification followed by immediate MFA bypass

Detection Strategies

  • Monitor Parse Server access logs for patterns of repeated verify password endpoint access
  • Implement rate limiting and anomaly detection on authentication endpoints
  • Review application logs for large response payloads from the verify password endpoint that may indicate data leakage
  • Deploy network-level inspection to identify responses containing sensitive authentication data patterns

Monitoring Recommendations

  • Configure alerting for failed MFA attempts followed by successful authentication from different sources
  • Implement user behavior analytics to detect account takeover patterns
  • Monitor for OAuth token usage from unexpected clients or locations
  • Establish baseline metrics for verify password endpoint usage and alert on deviations

How to Mitigate CVE-2026-34215

Immediate Actions Required

  • Upgrade Parse Server to version 8.6.63 or later for stable releases
  • Upgrade Parse Server to version 9.7.0-alpha.7 or later for alpha releases
  • Review authentication logs for potential exploitation attempts
  • Consider forcing MFA re-enrollment for high-value accounts if compromise is suspected

Patch Information

The vulnerability has been patched in Parse Server versions 8.6.63 and 9.7.0-alpha.7. The fix adds a call to authDataManager.runAfterFind() to properly sanitize authentication data before returning it to the client. Security patches are available via the following commits:

  • GitHub Commit for v8.x branch
  • GitHub Commit for v9.x alpha branch

For additional details, refer to the GitHub Security Advisory GHSA-wp76-gg32-8258.

Workarounds

  • If immediate patching is not possible, consider disabling or restricting access to the verify password endpoint
  • Implement a reverse proxy or API gateway rule to filter sensitive fields from verify password responses
  • Add additional authentication controls such as IP allowlisting for administrative accounts
  • Deploy Web Application Firewall (WAF) rules to inspect and sanitize authentication endpoint responses
bash
# Upgrade Parse Server to patched version
npm update parse-server@8.6.63

# Or for alpha channel
npm update parse-server@9.7.0-alpha.7

# Verify installed version
npm list parse-server

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

  • EPSS Probability0.05%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:L/AT:N/PR:H/UI:N/VC:H/VI:N/VA:N/SC:H/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

  • NVD-CWE-noinfo
  • Vendor Resources
  • GitHub Commit Update

  • GitHub Commit Update

  • GitHub Pull Request #10323

  • GitHub Pull Request #10324

  • GitHub Security Advisory GHSA-wp76-gg32-8258
  • 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