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
    • 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-32943

CVE-2026-32943: Parse Server Race Condition Vulnerability

CVE-2026-32943 is a race condition flaw in Parseplatform Parse-server that allows password reset tokens to be reused in concurrent requests, enabling attackers to hijack password resets. This article covers technical details, affected versions, impact, and mitigation strategies.

Published: March 20, 2026

CVE-2026-32943 Overview

CVE-2026-32943 is a Time-of-Check Time-of-Use (TOCTOU) race condition vulnerability in Parse Server, an open source backend that can be deployed to any infrastructure running Node.js. The password reset mechanism in affected versions does not enforce single-use guarantees for reset tokens, allowing multiple concurrent requests to consume the same token within a short time window.

Critical Impact

An attacker who intercepts a password reset token can race the legitimate user's password reset request, potentially causing the attacker's password to take effect while the legitimate user believes their password was changed successfully.

Affected Products

  • Parse Server versions prior to 8.6.48
  • Parse Server versions 9.6.0-alpha1 through 9.6.0-alpha27
  • All Parse Server deployments utilizing the password reset feature

Discovery Timeline

  • 2026-03-18 - CVE-2026-32943 published to NVD
  • 2026-03-19 - Last updated in NVD database

Technical Details for CVE-2026-32943

Vulnerability Analysis

This vulnerability is classified under CWE-367 (Time-of-Check Time-of-Use Race Condition). The core issue lies in the non-atomic handling of password reset tokens during the password update operation. When a user initiates a password reset, Parse Server generates a token that should be valid for a single use only. However, the token validation and consumption were implemented as separate operations, creating a window where multiple concurrent requests could successfully validate and use the same token.

The attack requires network access and depends on the attacker's ability to intercept a valid password reset token, typically through methods such as email interception, man-in-the-middle attacks, or access to email logs. Once a token is obtained, the attacker can submit a password reset request simultaneously with the legitimate user.

Root Cause

The root cause stems from a lack of atomicity in the password reset token validation process. In vulnerable versions, the application first verifies that the reset token is valid, then updates the password and clears the token in subsequent operations. This two-step process creates a race window where multiple requests can pass the validation check before any single request clears the token.

Attack Vector

The attack exploits the network-accessible password reset endpoint. An attacker who has obtained a valid reset token through interception can craft a password reset request with their chosen password. By timing this request to coincide with the legitimate user's password reset attempt, both requests may pass token validation. Due to the non-deterministic nature of concurrent request processing, the attacker's password may be the one that ultimately persists in the database, while the legitimate user receives a success response.

The vulnerability mechanism operates as follows: when concurrent password reset requests arrive, each request independently validates the token, finds it valid, and proceeds to update the password. Since the token is not atomically consumed during validation, multiple requests can succeed. The final password stored depends on which database write completes last.

Detection Methods for CVE-2026-32943

Indicators of Compromise

  • Multiple password reset completion requests for the same user account within milliseconds
  • Password reset success logs followed by immediate authentication failures for the legitimate user
  • Concurrent HTTP POST requests to the password reset endpoint with identical token values
  • User reports of password reset completing successfully but new password not working

Detection Strategies

  • Implement request logging that correlates password reset tokens with timestamps to identify concurrent token usage attempts
  • Monitor for rapid successive password reset completions (within 1-2 seconds) targeting the same user account
  • Configure web application firewall rules to flag multiple password reset requests with identical tokens
  • Analyze database query logs for concurrent UPDATE operations on user password fields

Monitoring Recommendations

  • Enable detailed logging on the Parse Server password reset endpoints (/requestPasswordReset and /resetPassword)
  • Set up alerts for anomalous patterns in password reset activity, particularly multiple completions per token
  • Monitor user authentication failure rates following password reset operations for potential attack indicators
  • Review Parse Server audit logs regularly for patterns consistent with race condition exploitation

How to Mitigate CVE-2026-32943

Immediate Actions Required

  • Upgrade Parse Server to version 8.6.48 or later for the stable branch
  • Upgrade to version 9.6.0-alpha.28 or later for the alpha branch
  • Review recent password reset logs for any signs of exploitation
  • Consider notifying users who recently completed password resets to verify their account access

Patch Information

The fix is available in Parse Server versions 9.6.0-alpha.28 and 8.6.48. The remediation implements atomic validation and consumption of password reset tokens by including the reset token as a condition in the database query that updates the password. This ensures that only one concurrent request can successfully consume the token, as subsequent requests will fail because the token has already been cleared.

For technical details on the fix implementation, refer to GitHub Pull Request #10216 and GitHub Pull Request #10217. The official security advisory is available at GitHub Security Advisory GHSA-r3xq-68wh-gwvh.

Workarounds

  • There is no known workaround other than upgrading to a patched version
  • Consider temporarily disabling the password reset feature if immediate upgrading is not possible and the risk is deemed unacceptable
  • Implement rate limiting on password reset endpoints to reduce the attack window, though this does not fully mitigate the vulnerability
  • Deploy additional monitoring to detect potential exploitation attempts until the upgrade is completed
bash
# Upgrade Parse Server to patched version
npm update parse-server@8.6.48

# Or for alpha branch users
npm update parse-server@9.6.0-alpha.28

# 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
  • TypeRace Condition

  • Vendor/TechParse Server

  • SeverityLOW

  • CVSS Score2.3

  • EPSS Probability0.04%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:P/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
  • IntegrityLow
  • AvailabilityNone
  • CWE References
  • CWE-367
  • Technical References
  • GitHub Pull Request #10216

  • GitHub Pull Request #10217
  • Vendor Resources
  • GitHub Security Advisory GHSA-r3xq-68wh-gwvh
  • Related CVEs
  • CVE-2026-39321: Parse Server Information Disclosure Flaw

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

  • CVE-2026-35200: Parse Server File Upload Vulnerability

  • CVE-2026-34373: Parse Server GraphQL Auth Bypass Flaw
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