CVE-2026-39321: Parse Server has a login timing side-channel reveals user existence
Impact
The login endpoint response time differs measurably depending on whether the submitted username or email exists in the database. When a user is not found, the server responds immediately. When a user exists but the password is wrong, a bcrypt comparison runs first, adding significant latency. This timing difference allows an unauthenticated attacker to enumerate valid usernames.
Patches
A dummy bcrypt comparison is now performed when no user is found, normalizing response timing regardless of user existence. Additionally, accounts without a stored password (e.g. OAuth-only) now also run a dummy comparison to prevent the same timing oracle.
Workarounds
Configure rate limiting on the login endpoint to slow automated enumeration. This reduces throughput but does not eliminate the timing signal for individual requests.
Other sources
Parse Server is an open source backend that can be deployed to any infrastructure that can run Node.js. Prior to 9.8.0-alpha.6 and 8.6.74, he login endpoint response time differs measurably depending on whether the submitted username or email exists in the database. When a user is not found, the server responds immediately. When a user exists but the password is wrong, a bcrypt comparison runs first, adding significant latency. This timing difference allows an unauthenticated attacker to enumerate valid usernames. This vulnerability is fixed in 9.8.0-alpha.6 and 8.6.74.
— MITRE
Affected Software
Remediation
Patch Available
Patch Available
Event History
Frequently Asked Questions
What is the severity of CVE-2026-39321?
CVE-2026-39321 has a medium severity rating due to its potential for user enumeration through timing attacks.
How do I fix CVE-2026-39321?
To fix CVE-2026-39321, upgrade to Parse Server version 8.6.74 or 9.8.0-alpha.6 or later.
What impact does CVE-2026-39321 have on user security?
CVE-2026-39321 can lead to information disclosure by allowing attackers to determine valid usernames or emails.
Which software versions are affected by CVE-2026-39321?
CVE-2026-39321 affects Parse Server versions prior to 8.6.74 and between 9.0.0 and 9.8.0-alpha.6.
Is CVE-2026-39321 a client-side or server-side vulnerability?
CVE-2026-39321 is a server-side vulnerability that exploits timing differences in login response behavior.