5.3.3.2.2 Ensure minimum password length is configured (Automated)
Profile Applicability
- Level 1 - Server
- Level 1 - Workstation
Description
The minimum password length setting determines the lowers number of characters that make up a password for a user account. There are many different theories about how to determine the best password length for an organization, but perhaps "passphrase" is a better term than "password".
The minlen option sets the minimum acceptable size for the new password (plus one if credits are not disabled which is the default). Cannot be set to lower value than 6.
Rationale
Strong passwords help protect systems from password attacks. Types of password attacks include dictionary attacks, which attempt to use common words and phrases, and brute force attacks, which try every possible combination of characters. Also attackers may try to obtain the account database so they can use tools to discover the accounts and passwords.
Impact
In general, it is true that longer passwords are better (harder to crack), but it is also true that forced password length requirements can cause user behavior that is predictable and undesirable. For example, requiring users to have a minimum 16-character password may cause them to choose repeating patterns like fourfourfourfour or passwordpassword that meet the requirement but aren't hard to guess. Additionally, length requirements increase the chances that users will adopt other insecure practices, like writing them down, re-using them or storing them unencrypted in their documents.
Having a reasonable minimum length with no maximum character limit increases the resulting average password length used (and therefore the strength).
Audit Procedure
Command Line
Run the following command to verify that password length is 14 or more characters, and conforms to local site policy:
Example output:
/etc/security/pwquality.conf.d/50-pwlength.conf:minlen = 14
Verify returned value(s) are no less than 14 characters and meet local site policy.
Run the following command to verify that minlen is not set, or is 14 or more characters, and conforms to local site policy:
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.conf configuration file
- settings in the
/etc/security/pwquality.conf configuration file override settings in a .conf file in the /etc/security/pwquality.conf.d/ directory
- settings in a
.conf file in the /etc/security/pwquality.conf.d/ directory are read in canonical order, with last read file containing the setting taking precedence
- It is recommended that settings be configured in a
.conf file 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 password length of 14 or more characters. Ensure that password length conforms to local site policy:
Example:
#!/usr/bin/env bash
{
sed -ri 's/^\s*minlen\s*=/# &/' /etc/security/pwquality.conf
[ ! -d /etc/security/pwquality.conf.d/ ] && mkdir /etc/security/pwquality.conf.d/
printf '\n%s' "minlen = 14" > /etc/security/pwquality.conf.d/50-pwlength.conf
}
Run the following command:
Edit any returned files and remove the minlen argument from the pam_pwquality.so line(s).
Default Value
minlen = 8
References
- pam_pwquality(8)
- CIS Password Policy Guide
- NIST SP 800-53 Rev. 5: IA-5(1)
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 |