You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The STIG is looking for the pam_faillock.so module, but the control is searching for the pam_tally module
A correction would be something like this:
describe command('grep faillock /etc/pam.d/common-auth') do
its('exit_status') { should eq 0 }
its('stdout.strip') { should match(/^\s*auth\s+\[default=die\]\s+pam_faillock.so\s+authfail$/) }
its('stdout.strip') { should match(/^\s*auth\s+sufficient\s+pam_faillock.so\s+authsucc$/) }
end
The text was updated successfully, but these errors were encountered:
The STIG is looking for the
pam_faillock.so
module, but the control is searching for thepam_tally
moduleA correction would be something like this:
The text was updated successfully, but these errors were encountered: