CV0-003 · Question #826
A company's website is continuously being brute forced, and its users have reported multiple account intrusions in the last few months. All users are using passwords that are at least 12 characters lo
The correct answer is B. Progressive login delay. Progressive login delay throttles brute force attempts by introducing increasing wait times after failed logins, stopping attackers without locking out legitimate users.
Question
A company's website is continuously being brute forced, and its users have reported multiple account intrusions in the last few months. All users are using passwords that are at least 12 characters long. The systems administrator needs to implement a control that will mitigate this issue without negatively affecting the user experience. Which of the following should the administrator implement to achieve the objective?
Options
- AAccount lockout
- BProgressive login delay
- CReduced password complexity
- DIncreased password length
How the community answered
(61 responses)- A7% (4)
- B75% (46)
- C15% (9)
- D3% (2)
Why each option
Progressive login delay throttles brute force attempts by introducing increasing wait times after failed logins, stopping attackers without locking out legitimate users.
Account lockout stops brute force but negatively impacts user experience by locking out legitimate users after a set number of failed attempts, which can also be weaponized as a denial-of-service against accounts.
Progressive login delay inserts an exponentially increasing delay after each failed authentication attempt, making automated brute force attacks impractical because the time required to guess credentials becomes prohibitive. Unlike account lockout, it does not deny service to legitimate users who occasionally mistype their password, preserving a positive user experience while directly countering the brute force vector.
Reducing password complexity makes credentials easier to guess and would worsen the brute force and account intrusion problem, not mitigate it.
Passwords are already 12 characters long; increasing length adds marginal resistance to brute force but does not actively throttle or block automated attack attempts.
Concept tested: Brute force mitigation via progressive login delay
Source: https://cheatsheetseries.owasp.org/cheatsheets/Authentication_Cheat_Sheet.html
Topics
Community Discussion
No community discussion yet for this question.