CVE-2008-7263:
Improper Authentication in pyftpdlib
7.3
CVSS ScoreBasic Information
CVE ID
GHSA ID
EPSS Score
-
CWE
Published
5/17/2022
Updated
10/23/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:L/A:L
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
pyftpdlib | pip | < 0.5.0 | 0.5.0 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing delay mechanisms in authentication handling. The FTPHandler.ftp_PASS function in ftpserver.py is directly responsible for processing password authentication. Pre-0.5.0 versions lacked any artificial delay after failed login attempts, as evidenced by CVE description and associated GitHub issue #73 discussing missing RFC-2577 recommended delays. This function's immediate response to invalid credentials allowed unlimited rapid password guessing. The first patched version (0.5.0) would logically add delay logic in this authentication flow, though exact commit diffs are unavailable.