CVE-2026-78551 Details
Description
RansomLook contains multiple weaknesses in its authentication endpoint that allow an unauthenticated remote attacker to enumerate valid usernames, perform unrestricted password-guessing attacks, and potentially exhaust application worker resources. For local authentication, the login implementation previously checked whether a submitted username existed before invoking the password hash verification function. Requests containing a nonexistent username therefore returned significantly faster than requests for valid accounts, for which the computationally expensive password verification routine was executed. A remote attacker could measure these response-time differences to determine which usernames correspond to valid RansomLook accounts. In addition, the /login endpoint did not restrict the number or frequency of failed authentication attempts. An attacker could consequently perform password brute-force, dictionary, password-spraying, or credential-stuffing attacks against known accounts without server-side throttling. For valid usernames, each authentication attempt also invokes the password key-derivation function, which consumes a significant amount of CPU time. A sufficiently high rate of login attempts could therefore occupy the application's synchronous Gunicorn workers and cause a denial of service affecting the entire application. The issue has been addressed by always performing password verification using a randomly generated dummy password hash when the supplied username does not exist, eliminating the username-dependent timing discrepancy. Failed authentication attempts are additionally rate-limited per client IP address using Valkey/Redis, with five failed attempts within five minutes resulting in a one-hour block. The reverse-proxy configuration was also updated so that the application derives the client address from a trusted X-Forwarded-For value that cannot be overridden by a client-supplied header.
RansomLook has vulnerabilities in its authentication process that enable an unauthenticated remote attacker to enumerate valid usernames and conduct unrestricted password-guessing attacks. The login mechanism previously verified the existence of a username before checking the password, causing requests for nonexistent usernames to be processed faster. This timing difference could be exploited to identify valid accounts. Additionally, the login endpoint lacked restrictions on the number or frequency of failed authentication attempts, allowing attackers to perform brute-force, dictionary, password-spraying, or credential-stuffing attacks on known accounts. The absence of server-side throttling meant that a high volume of login attempts could overwhelm the application's Gunicorn workers, leading to a denial-of-service condition. These issues have been addressed by modifying the login process to always verify passwords using a dummy hash for nonexistent usernames, implementing rate limits on failed login attempts, and updating the reverse-proxy configuration to ensure accurate client address handling.
The vulnerability has been addressed in the application's latest version. Users should update to this version to benefit from the improved authentication handling and rate-limiting features.
Metrics
CVSS 4.0 Severity and Vector Strings:
CVSS 3.x Severity and Vector Strings:
No data available for CVSS Version 2.0 on this CVE.
Volerion
Assessed Aug 24, 2026CISA-ADP
Assessed Aug 24, 2026References to Advisories, Solutions, and Tools
By selecting these links, you will be leaving this site. These are references gathered from the official CVE record and are not endorsed by Volerion.
| URL | Source(s) | Tag(s) |
|---|---|---|
| https://github.com/RansomLook/RansomLook/commit/8602740347b0e928ad9fbaf5bc6ff242337dec6b | CIRCL | Source CodeVendor |
Weakness Enumeration
| CWE-ID | CWE Name | Source |
|---|---|---|
| CWE-307 | Improper Restriction of Excessive Authentication Attempts | CIRCL |
| CWE-400 | Uncontrolled Resource Consumption | CIRCL |
Affected Products
| Product | Versions |
|---|---|
| RansomLook | All versions |
CPE
Remediation
| |
Change History
2 change records found show changes
| Date | Action | Recorded By |
|---|---|---|
| Aug 24, 2026 | New CVE Received | CIRCL |
| Aug 24, 2026 | CVE Modified | CISA-ADP |
Volerion