CVE-2021-3663:
No Restriction of Excessive Authentication Attempts in Firefly III
5.3
CVSS ScoreBasic Information
CVE ID
GHSA ID
EPSS Score
-
CWE
Published
8/9/2021
Updated
7/6/2023
KEV Status
No
Technology
PHP
Technical Details
CVSS Vector
CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:L/I:L/A:L
Package Name | Ecosystem | Vulnerable Versions | First Patched Version |
---|---|---|---|
grumpydictator/firefly-iii | composer | < 5.5.13 | 5.5.13 |
Vulnerability Intelligence
Miggo AI
Root Cause Analysis
The vulnerability stems from missing rate limiting in authentication flow. The patch adds the ThrottlesLogins trait to LoginController, which is Laravel's built-in mechanism for login attempt throttling. Before this fix, the controller only used AuthenticatesUsers trait without its complementary throttling functionality. The login method (inherited from AuthenticatesUsers) would not enforce any attempt limits without ThrottlesLogins, making it the vulnerable entry point. The direct correlation between adding ThrottlesLogins and the vulnerability description confirms this is the affected function.