A Leader in the 2026 Gartner® Magic Quadrant™ for Endpoint Protection. Six years running.Six years. Gartner® Magic Quadrant™ Leader.Find Out Why
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-31875

CVE-2026-31875: Parse Server Auth Bypass Vulnerability

CVE-2026-31875 is an authentication bypass flaw in Parse Server where MFA recovery codes can be reused indefinitely, allowing attackers to bypass multi-factor authentication. This article covers technical details, affected versions, and mitigation strategies.

Published: March 13, 2026

CVE-2026-31875 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 multi-factor authentication (MFA) implementation. Prior to versions 9.6.0-alpha.7 and 8.6.33, when MFA via TOTP is enabled for a user account, Parse Server generates two single-use recovery codes intended as a fallback when the user cannot provide a TOTP token. However, these recovery codes are not consumed after use, allowing the same recovery code to be used an unlimited number of times.

Critical Impact

An attacker who obtains a single recovery code can repeatedly authenticate as the affected user without the code ever being invalidated, completely defeating the single-use design and weakening the security of MFA-protected accounts.

Affected Products

  • Parse Server versions prior to 9.6.0-alpha.7
  • Parse Server versions prior to 8.6.33
  • Any application using Parse Server with TOTP-based MFA enabled

Discovery Timeline

  • 2026-03-11 - CVE CVE-2026-31875 published to NVD
  • 2026-03-12 - Last updated in NVD database

Technical Details for CVE-2026-31875

Vulnerability Analysis

This vulnerability stems from improper resource management in Parse Server's MFA recovery code implementation, classified under CWE-672 (Operation on a Resource after Expiration or Release). The core issue lies in how Parse Server handles recovery code consumption during the authentication process.

When a user enables TOTP-based MFA, Parse Server generates two recovery codes designed to provide account access if the user loses their authenticator device. By design, these codes should be single-use tokens that are invalidated immediately upon successful authentication. However, the vulnerability causes Parse Server to skip the invalidation step, leaving the recovery code valid in the database after use.

This flaw represents a fundamental breakdown in the security model of recovery codes. The entire purpose of single-use codes is to minimize the window of exposure if a code is compromised. With unlimited reuse, a single leaked recovery code becomes a permanent backdoor into the affected account.

Root Cause

The root cause is an implementation error in the authentication handler that processes recovery codes. After successful verification of a recovery code, the code should be marked as consumed or deleted from the user's account data. The vulnerable versions fail to execute this consumption logic, resulting in the recovery code remaining valid for future authentication attempts indefinitely.

This is a classic case of missing state transition logic where the system correctly validates the code but fails to update the code's status from "available" to "consumed" after successful use.

Attack Vector

This vulnerability is exploitable over the network without requiring any special privileges or user interaction, though the attacker must first obtain a valid recovery code through some means (social engineering, database breach, or interception during initial code distribution).

The attack scenario involves an adversary who has obtained a single valid recovery code for a target account. In a properly functioning system, using this code once would invalidate it. However, due to this vulnerability, the attacker can:

  1. Use the recovery code to bypass MFA authentication
  2. Maintain persistent access by reusing the same code indefinitely
  3. Continue accessing the account even after the legitimate user has changed their password or regenerated TOTP secrets
  4. Evade detection since no new recovery codes need to be generated or stolen

The network-accessible nature of Parse Server APIs makes this vulnerability particularly concerning for cloud-deployed applications.

Detection Methods for CVE-2026-31875

Indicators of Compromise

  • Multiple successful MFA authentications using recovery codes instead of TOTP tokens for the same user account
  • Authentication logs showing repeated use of recovery code authentication method from different IP addresses
  • Unusual login patterns where MFA bypass via recovery codes occurs frequently for specific accounts
  • Database records showing recovery codes that have been used but not marked as consumed

Detection Strategies

  • Implement logging and monitoring for all recovery code authentication events to establish baseline behavior
  • Create alerts for accounts where recovery code authentication occurs more than twice (exceeding the expected two single-use codes)
  • Audit existing Parse Server logs for historical patterns of recovery code reuse
  • Cross-reference recovery code authentication events with user-reported suspicious activity

Monitoring Recommendations

  • Enable detailed authentication logging in Parse Server configurations to capture MFA authentication method details
  • Monitor for anomalous authentication patterns, particularly repeated successful logins bypassing TOTP verification
  • Implement session tracking to identify accounts with multiple concurrent sessions established via recovery codes
  • Review Parse Server audit logs regularly for signs of persistent unauthorized access

How to Mitigate CVE-2026-31875

Immediate Actions Required

  • Upgrade Parse Server to version 9.6.0-alpha.7 or later for the 9.x release line
  • Upgrade Parse Server to version 8.6.33 or later for the 8.x release line
  • Force regeneration of recovery codes for all MFA-enabled user accounts after patching
  • Conduct security review of authentication logs to identify potential exploitation

Patch Information

The Parse Server development team has released patched versions addressing this vulnerability. Organizations should update to the following versions:

  • For 9.x users: Upgrade to version 9.6.0-alpha.7 or later
  • For 8.x users: Upgrade to version 8.6.33 or later

Additional technical details and security guidance are available in the GitHub Security Advisory GHSA-4hf6-3x24-c9m8.

Workarounds

  • Temporarily disable recovery code functionality if possible until patching is complete
  • Implement additional authentication controls at the application layer to validate recovery code usage
  • Require administrator approval for any authentication attempt using recovery codes
  • Consider implementing IP-based restrictions for accounts with elevated privileges
bash
# Configuration example for version upgrade via npm
npm update parse-server@8.6.33
# or for latest alpha release
npm update parse-server@9.6.0-alpha.7

# After upgrade, regenerate recovery codes for affected users
# This should be done programmatically through your Parse Server admin interface

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.07%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:H/VI:N/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-672
  • Technical References
  • GitHub Parse Server Release 8.6.33

  • GitHub Parse Server Release 9.6.0-alpha.7

  • GitHub Security Advisory GHSA-4hf6-3x24-c9m8
  • 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 Most Advanced Cybersecurity Platform

See how the world’s most intelligent, autonomous cybersecurity platform can protect your organization today 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