Vulnerability Discussion
By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-forcing, is reduced. Limits are imposed by locking the account.
Having account locks persist across reboots ensures that a locked account is only unlocked by an administrator.
If the locks did not persist across reboots, an attacker could reboot the system to continue brute force attacks against the accounts on the system.
The default /var/run/faillock directory is cleared upon reboot and should not be used.
Check
Verify the "/etc/security/faillock.conf" file is configured to use a nondefault faillock directory to ensure its contents persist after reboot with the following command:
$ grep "dir =" /etc/security/faillock.conf
dir = /var/log/faillock
If the "dir" option is set to the default /var/run/faillock directory, is missing, or is commented out, this is a finding.
Fix
Configure AlmaLinux OS 9 to maintain the contents of the faillock directory after a reboot.
Add/modify the "/etc/security/faillock.conf" file to match the following line:
dir = /var/log/faillock