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

CVE-2026-39321: Parse Server Information Disclosure Flaw

CVE-2026-39321 is an information disclosure vulnerability in Parse Server that enables timing attacks to enumerate valid usernames. This article covers the technical details, affected versions, impact, and mitigation.

Published: April 10, 2026

CVE-2026-39321 Overview

Parse Server, an open source backend that can be deployed to any infrastructure running Node.js, contains a timing attack vulnerability in its login endpoint that enables username enumeration. Prior to versions 9.8.0-alpha.6 and 8.6.74, the login endpoint response time differs measurably depending on whether the submitted username or email exists in the database. This timing discrepancy allows unauthenticated attackers to enumerate valid usernames and email addresses, potentially facilitating further attacks such as credential stuffing or targeted phishing campaigns.

Critical Impact

Unauthenticated attackers can enumerate valid usernames and email addresses by measuring login response times, enabling targeted attacks against confirmed user accounts.

Affected Products

  • Parse Server versions prior to 9.8.0-alpha.6 (9.x branch)
  • Parse Server versions prior to 8.6.74 (8.x branch)
  • Any Parse Server deployment using the affected login authentication flow

Discovery Timeline

  • 2026-04-07 - CVE CVE-2026-39321 published to NVD
  • 2026-04-08 - Last updated in NVD database

Technical Details for CVE-2026-39321

Vulnerability Analysis

This vulnerability is classified as CWE-208 (Observable Timing Discrepancy), a side-channel attack that exploits measurable differences in system response times to infer sensitive information. The flaw exists in Parse Server's authentication mechanism where the server's behavior differs based on whether a user account exists in the database.

When a login attempt is made with a non-existent username, the server responds immediately without performing any cryptographic operations. However, when a valid username is submitted with an incorrect password, the server must first execute a bcrypt password comparison operation before returning an authentication failure. This bcrypt comparison introduces significant computational latency, creating an observable timing difference that attackers can measure to distinguish between valid and invalid usernames.

The network-based attack vector requires specific conditions to be met for successful exploitation, though it does not require authentication or user interaction. An attacker can systematically submit login requests with candidate usernames and measure response times to build a list of valid accounts.

Root Cause

The root cause of this vulnerability lies in the conditional execution of the bcrypt password hashing comparison. The authentication flow performs a database lookup for the user first, and only proceeds to the password verification step if a user record is found. Since bcrypt is intentionally designed to be computationally expensive (to prevent brute-force attacks), this creates a measurable timing side-channel. The absence of constant-time behavior in the authentication flow allows attackers to deduce account existence based purely on response latency.

Attack Vector

The attack is performed over the network against the Parse Server login endpoint. An attacker sends authentication requests with various candidate usernames and measures the server's response time for each request. By analyzing the timing distribution, the attacker can identify which usernames exist in the system (longer response times due to bcrypt) versus those that don't (immediate failure responses).

This enumerated list of valid usernames can then be leveraged for subsequent attacks including credential stuffing with leaked password databases, targeted password spraying attacks, or social engineering campaigns directed at confirmed users.

Detection Methods for CVE-2026-39321

Indicators of Compromise

  • High volume of failed login attempts from single IP addresses with varying usernames
  • Systematic login attempts with alphabetically or sequentially ordered usernames
  • Unusual patterns of login timing measurements from external sources
  • Authentication logs showing rapid-fire requests with different usernames but similar timing characteristics

Detection Strategies

  • Monitor authentication logs for anomalous patterns of failed login attempts with diverse usernames
  • Implement rate limiting detection on login endpoints to identify enumeration attempts
  • Deploy web application firewalls (WAF) with rules to detect username enumeration behavior
  • Correlate login attempt patterns with response time metrics to identify timing-based probing

Monitoring Recommendations

  • Enable verbose logging on Parse Server authentication endpoints
  • Configure alerting for login failure rates exceeding baseline thresholds
  • Monitor network traffic for patterns consistent with automated enumeration tools
  • Track unique username submission rates per source IP over rolling time windows

How to Mitigate CVE-2026-39321

Immediate Actions Required

  • Upgrade Parse Server to version 9.8.0-alpha.6 or later for 9.x deployments
  • Upgrade Parse Server to version 8.6.74 or later for 8.x deployments
  • Implement rate limiting on login endpoints to slow enumeration attempts
  • Deploy additional monitoring on authentication endpoints pending upgrade

Patch Information

The vulnerability has been fixed in Parse Server versions 9.8.0-alpha.6 and 8.6.74. The patches address the timing discrepancy by implementing constant-time behavior in the authentication flow. For technical details on the fix implementation, refer to GitHub Pull Request #10398 and GitHub Pull Request #10399. The complete security advisory is available at GitHub Security Advisory GHSA-mmpq-5hcv-hf2v.

Workarounds

  • Implement aggressive rate limiting on login endpoints to make timing attacks impractical
  • Deploy a reverse proxy or WAF with timing normalization capabilities
  • Add artificial delays to all authentication responses to mask timing differences
  • Consider implementing CAPTCHA or account lockout mechanisms for repeated failed attempts
  • Use generic error messages that do not differentiate between invalid usernames and incorrect passwords

Disclaimer: This content was generated using AI. While we strive for accuracy, please verify critical information with official sources.

  • Vulnerability Details
  • TypeInformation Disclosure

  • Vendor/TechParse Server

  • SeverityMEDIUM

  • CVSS Score6.3

  • EPSS Probability0.03%

  • Known ExploitedNo
  • CVSS Vector
  • CVSS:4.0/AV:N/AC:H/AT:P/PR:N/UI:N/VC:L/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-208
  • Technical References
  • GitHub Pull Request #10398

  • GitHub Pull Request #10399

  • GitHub Security Advisory GHSA-mmpq-5hcv-hf2v
  • Related CVEs
  • CVE-2026-34363: Parse Server Information Disclosure Flaw

  • CVE-2026-33323: Parse Server Information Disclosure Flaw

  • CVE-2026-33429: Parse Server Information Disclosure Flaw

  • CVE-2026-33627: Parse Server Information Disclosure 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