CVE-2022-2525: Improper Restriction of Excessive Authentication Attempts in calibreweb
9.8
CVSS Score
3.1
Basic Information
CVE ID
GHSA ID
EPSS Score
0.18642%
CWE
Published
4/15/2023
Updated
4/24/2023
KEV Status
No
Technology
Python
Technical Details
CVSS Vector
CVSS:3.1/AV:N/AC:L/PR:N/UI:N/S:U/C:H/I:H/A:H
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
calibreweb | pip | < 0.6.20 | 0.6.20 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability CWE-307 explicitly relates to missing authentication attempt restrictions. In web applications, this typically manifests in the login handler function
. While specific code isn't available, the pattern matches: 1) Authentication endpoints are common attack surfaces for brute-force attacks 2) The commit fixing this (0.6.20) would logically add attempt tracking/rate-limiting 3) The vulnerability title directly implicates the authentication flow. The login function
is the most probable location where failed attempt counters or delay mechanisms would be missing prior to patching.