SY0-501 · Question #287
While reviewing the security controls in place for a web-based application, a security controls assessor notices that there are no password strength requirements in place. Because of this…
The correct answer is A. Minimum complexity D. Minimum length. Brute force attacks rely on trying many password combinations; increasing password complexity and length directly increases the search space an attacker must exhaust, making brute force significantly less feasible.
Question
While reviewing the security controls in place for a web-based application, a security controls assessor notices that there are no password strength requirements in place. Because of this vulnerability, passwords might be easily discovered using a brute force attack. Which of the following password requirements will MOST effectively improve the security posture of the application against these attacks? (Select two)
Options
- AMinimum complexity
- BMaximum age limit
- CMaximum length
- DMinimum length
- EMinimum age limit
- FMinimum re-use limit
How the community answered
(33 responses)- A82% (27)
- B3% (1)
- E12% (4)
- F3% (1)
Why each option
Brute force attacks rely on trying many password combinations; increasing password complexity and length directly increases the search space an attacker must exhaust, making brute force significantly less feasible.
Minimum complexity requirements force passwords to include multiple character types (uppercase, lowercase, numbers, symbols), exponentially increasing the number of possible combinations an attacker must try in a brute force attack, dramatically raising the computational cost.
Maximum age limit controls how long a password can be used before it must be changed, which addresses credential exposure over time but does not increase resistance to brute force attacks against the current password.
Maximum length actually limits how long a password can be, which reduces the possible keyspace and could make brute force attacks easier rather than harder.
Minimum length requirements ensure passwords have enough characters to create a sufficiently large keyspace; even a small increase in required length multiplies the number of possible passwords exponentially, making exhaustive brute force attacks computationally impractical.
Minimum age limit prevents users from changing their password too frequently, which is a control against password re-use cycling but has no effect on the difficulty of brute force attacks.
Minimum re-use limit prevents users from reusing previous passwords, which addresses password history and credential reuse scenarios but does not increase the strength or complexity of the current password against brute force.
Concept tested: Password policy controls to mitigate brute force attacks
Source: https://learn.microsoft.com/en-us/azure/active-directory/authentication/concept-password-ban-bad
Topics
Community Discussion
No community discussion yet for this question.