5.3.3.2.4 Ensure password same consecutive characters is configured (Automated)
Profile Applicability
- Level 1 - Server
- Level 1 - Workstation
Description
The pwquality maxrepeat option sets the maximum number of allowed same consecutive characters in a new password.
Rationale
Use of a complex password helps to increase the time and resources required to compromise the password. Password complexity, or strength, is a measure of the effectiveness of a password in resisting attempts at guessing and brute-force attacks.
Password complexity is one factor of several that determines how long it takes to crack a password. The more complex the password, the greater the number of possible combinations that need to be tested before the password is compromised.
Audit Procedure
Command Line
Run the following command to verify that the maxrepeat option is set to 3 or less, not 0, and follows local site policy:
# grep -Psi -- '^\h*maxrepeat\h*=\h*[1-3]\b' /etc/security/pwquality.conf /etc/security/pwquality.conf.d/*.conf
Example output:
/etc/security/pwquality.conf.d/50-pwrepeat.conf:maxrepeat = 3
Verify returned value(s) are 3 or less, not 0, and meet local site policy.
Run the following command to verify that maxrepeat is not set, is 3 or less, not 0, and conforms to local site policy:
# grep -Psi -- '^\h*password\h+(requisite|required|sufficient)\h+pam_pwquality\.so\h+([^#\n\r]+\h+)?maxrepeat\h*=\h*(0|[4-9]|[1-9][0-9]+)\b' /etc/pam.d/common-password
Nothing should be returned.
Note:
- settings should be configured in only one location for clarity
- Settings observe an order of precedence:
- module arguments override the settings in the
/etc/security/pwquality.confconfiguration file - settings in the
/etc/security/pwquality.confconfiguration file override settings in a.conffile in the/etc/security/pwquality.conf.d/directory - settings in a
.conffile in the/etc/security/pwquality.conf.d/directory are read in canonical order, with last read file containing the setting taking precedence
- module arguments override the settings in the
- It is recommended that settings be configured in a
.conffile in the/etc/security/pwquality.conf.d/directory for clarity, convenience, and durability.
Remediation
Command Line
Create or modify a file ending in .conf in the /etc/security/pwquality.conf.d/ directory or the file /etc/security/pwquality.conf and add or modify the following line to set maxrepeat to 3 or less and not 0. Ensure setting conforms to local site policy:
Example:
#!/usr/bin/env bash
{
sed -ri 's/^\s*maxrepeat\s*=/# &/' /etc/security/pwquality.conf
[ ! -d /etc/security/pwquality.conf.d/ ] && mkdir /etc/security/pwquality.conf.d/
printf '\n%s' "maxrepeat = 3" > /etc/security/pwquality.conf.d/50-pwrepeat.conf
}
Run the following command:
# grep -Pl -- '\bpam_pwquality\.so\h+([^#\n\r]+\h+)?maxrepeat\b' /usr/share/pam-configs/*
Edit any returned files and remove the maxrepeat argument from the pam_pwquality.so line(s).
Default Value
maxrepeat = 0
References
- NIST SP 800-53 Rev. 5: IA-5
CIS Controls
| Controls Version | Control | IG 1 | IG 2 | IG 3 |
|---|---|---|---|---|
| v8 | 5.2 Use Unique Passwords | * | * | * |
| v7 | 4.4 Use Unique Passwords | * | * |
MITRE ATT&CK Mappings
| Techniques / Sub-techniques | Tactics | Mitigations |
|---|---|---|
| T1110, T1110.001, T1110.002, T1110.003, T1178.001, T1178.002, T1178.003, T1178.004 | TA0006 | M1027 |