101 · Question #416
Brute force protection will:
The correct answer is A. Block a user after a specified number, unsuccessful login attempts. Brute force protection is a security control that automatically blocks a user account after a configured number of consecutive failed login attempts.
Question
Brute force protection will:
Options
- ABlock a user after a specified number, unsuccessful login attempts
- BBlock a user after a specified number of page requests are attempted
- CNone of the above
- DBlock a user from downloading too much content from the site
How the community answered
(44 responses)- A86% (38)
- B7% (3)
- C5% (2)
- D2% (1)
Why each option
Brute force protection is a security control that automatically blocks a user account after a configured number of consecutive failed login attempts.
Brute force protection monitors authentication events and enforces an account lockout or temporary block once a defined threshold of unsuccessful login attempts is exceeded, directly countering automated password-guessing attacks. This is the canonical definition of the feature across web application firewalls, identity platforms, and application security frameworks.
Blocking based on the number of page requests describes HTTP rate limiting or request throttling, which is a separate control unrelated to authentication failure counting.
None of the above is incorrect because option A accurately and completely defines brute force protection.
Restricting content downloads describes bandwidth throttling or data-transfer limits, which is a distinct control with no connection to login attempt monitoring.
Concept tested: Brute force protection authentication lockout behavior
Source: https://cheatsheetseries.owasp.org/cheatsheets/Authentication_Cheat_Sheet.html
Topics
Community Discussion
No community discussion yet for this question.