nerdexam
GIAC

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.

Security Architecture & Engineering

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)
  • A
    86% (51)
  • B
    5% (3)
  • D
    8% (5)

Why each option

Brute force attacks exploit unlimited login attempts and automated guessing, so countermeasures must directly block or slow that automated process.

AThe site should restrict the number of login attempts to only three times.Correct

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.

BThe site should increase the encryption key length of the password.

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.

CThe site should use CAPTCHA after a specific number of failed login attempts.Correct

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.

DThe site should force its users to change their passwords from time to time.

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

#brute force attacks#CAPTCHA#login lockout#password security

Community Discussion

No community discussion yet for this question.

Full GSLC Practice