CVE-2026-31901: Parse Server has user enumeration via email verification endpoint
Impact
The email verification endpoint (/verificationEmailRequest) returns distinct error responses depending on whether an email address belongs to an existing user, is already verified, or does not exist. An attacker can send requests with different email addresses and observe the error codes to determine which email addresses are registered in the application.
This is a user enumeration vulnerability that affects any Parse Server deployment with email verification enabled (verifyUserEmails: true).
Patches
The fix introduces a new Parse Server option emailVerifySuccessOnInvalidEmail (default: true) that returns a generic success response for all verification email requests, regardless of whether the email address is valid, already verified, or non-existent. This prevents an attacker from distinguishing between these cases.
The fix also strengthens the input validation for the related resetPasswordSuccessOnInvalidEmail option, and adds security checks that warn when either enumeration mitigation is disabled.
Workarounds
There is no known workaround.
References
- GitHub security advisory: https://github.com/parse-community/parse-server/security/advisories/GHSA-w54v-hf9p-8856 - Fix Parse Server 9: https://github.com/parse-community/parse-server/releases/tag/9.6.0-alpha.8 - Fix Parse Server 8: https://github.com/parse-community/parse-server/releases/tag/8.6.34
Other sources
Parse Server is an open source backend that can be deployed to any infrastructure that can run Node.js. Prior to 8.6.34 and 9.6.0-alpha.8, the email verification endpoint (/verificationEmailRequest) returns distinct error responses depending on whether an email address belongs to an existing user, is already verified, or does not exist. An attacker can send requests with different email addresses and observe the error codes to determine which email addresses are registered in the application. This is a user enumeration vulnerability that affects any Parse Server deployment with email verification enabled (verifyUserEmails: true). This vulnerability is fixed in 8.6.34 and 9.6.0-alpha.8.
— MITRE
Affected Software
Remediation
Event History
Frequently Asked Questions
What is the severity of CVE-2026-31901?
CVE-2026-31901 has a medium severity level due to information disclosure that can be exploited by attackers.
How do I fix CVE-2026-31901?
To fix CVE-2026-31901, upgrade to parse-server version 8.6.34 or 9.6.0-alpha.8 or higher.
What systems are affected by CVE-2026-31901?
CVE-2026-31901 affects parse-server versions prior to 8.6.34 and those in the 9.0.0-alpha.1 to 9.6.0-alpha.8 range.
What type of vulnerability is CVE-2026-31901?
CVE-2026-31901 is an information disclosure vulnerability related to error response handling in email verification.
Can CVE-2026-31901 be exploited remotely?
Yes, CVE-2026-31901 can be exploited remotely by an attacker sending crafted requests to the email verification endpoint.