SV-268126r1131057_rule
V-268126
SRG-OS-000069-GPOS-00037
ANIX-00-000730
CAT II
10
Configure NixOS to enforce password complexity.
Add the following Nix code to the NixOS Configuration, usually located in /etc/nixos/configuration.nix or /etc/nixos/flake.nix:
environment.etc."/security/pwquality.conf".text = ''
ucredit=-1
'';
Rebuild and switch to the new NixOS configuration:
$ sudo nixos-rebuild switch
Verify NixOS enforces password complexity by requiring at least one uppercase character with the following command:
$ grep ucredit /etc/security/pwquality.conf
ucredit=-1
If the value of "ucredit" is a positive number or is commented out, this is a finding.
V-268126
False
ANIX-00-000730
Verify NixOS enforces password complexity by requiring at least one uppercase character with the following command:
$ grep ucredit /etc/security/pwquality.conf
ucredit=-1
If the value of "ucredit" is a positive number or is commented out, this is a finding.
M
5658