GSLC · Question #253
John works as a professional Ethical Hacker. He has been assigned a project to test the security server. Now, he suggests some countermeasures to avoid such brute force attacks on the We- are-secure s
The correct answer is A. The site should restrict the number of login attempts to only three times. C. The site should use CAPTCHA after a specific number of failed login attempts.. Brute force attacks exploit unlimited login attempts and automated guessing, so countermeasures must directly block or slow that automated process.
Question
John works as a professional Ethical Hacker. He has been assigned a project to test the security server. Now, he suggests some countermeasures to avoid such brute force attacks on the We- are-secure server. Which of the following are countermeasures against a brute force attack? Each correct answer represents a complete solution. Choose all that apply.
Options
- AThe site should restrict the number of login attempts to only three times.
- BThe site should increase the encryption key length of the password.
- CThe site should use CAPTCHA after a specific number of failed login attempts.
- DThe site should force its users to change their passwords from time to time.
How the community answered
(59 responses)- A86% (51)
- B5% (3)
- D8% (5)
Why each option
Brute force attacks exploit unlimited login attempts and automated guessing, so countermeasures must directly block or slow that automated process.
Restricting login attempts to three tries directly prevents brute force by locking out or throttling access after a small number of failures, making automated credential guessing infeasible. This is one of the most direct and effective controls against online brute force attacks.
Increasing encryption key length strengthens cryptographic operations but does not prevent an attacker from submitting unlimited login guesses against a web form, so it does not mitigate online brute force attacks.
CAPTCHA challenges after repeated failures block automated tools from continuing to submit credentials, since bots cannot reliably solve human verification puzzles. This allows legitimate users to continue while disrupting scripted attack tools.
Periodic password changes reduce the window of exposure if a credential is already compromised, but they do not prevent or interrupt an ongoing brute force attempt against the login interface.
Concept tested: Countermeasures against online brute force login attacks
Source: https://owasp.org/www-community/controls/Blocking_Brute_Force_Attacks
Topics
Community Discussion
No community discussion yet for this question.