CVE-2017-5537: Weblate user account enumeration via reset password form
5.3
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.66742%
CWE
Published
5/17/2022
Updated
11/19/2024
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:L/I:N/A:N
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
weblate | pip | < 2.10.1 | 2.10.1 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from the password reset form leaking account existence through error messages. The commit diff shows the critical fix occurred in weblate/accounts/views.py
where the else-clause was modified to redirect to 'email-sent' regardless of validation outcome. This directly addresses CWE-209 (sensitive info in errors) by eliminating differential error messages. The reset_password()
function is explicitly responsible for handling password reset logic, making it the clear source of the vulnerability before patching.