TOSS must enforce the limit of five consecutive invalid logon attempts by a user during a 15-minute time period.
Overview
| Finding ID | Version | Rule ID | IA Controls | Severity |
| V-252946 | TOSS-04-020000 | SV-252946r958388_rule | CCI-000044 | medium |
| Description | ||||
| By limiting the number of failed logon attempts, the risk of unauthorized system access via user password guessing, otherwise known as brute-force attacks, is reduced. Limits are imposed by locking the account. | ||||
| STIG | Date | |||
| Tri-Lab Operating System Stack (TOSS) 4 Security Technical Implementation Guide | 2025-05-08 | |||
Related Frameworks
3 paths across 3 frameworks
Related Frameworks
NIST 800-531 mapping
AC-7
1.00
- DISA · 2 · disa_xccdf · related
- DISA · 2025-01-23 · disa_cci_list · equivalent
NIST 800-1711 mapping
3.1.8
1.00
- DISA · 2 · disa_xccdf · related
- DISA · 2025-01-23 · disa_cci_list · equivalent
- NIST · Rev 2 (Feb 2020, errata Jan 2021) · nist_800_171_app_d · equivalent
CCI1 mapping
CCI-000044
1.00
- DISA · 2 · disa_xccdf · related
Details
Check Text (C-252946r958388_chk)
Verify the "/etc/security/faillock.conf" file is configured to lock an account after three unsuccessful logon attempts within 15 minutes:
$ sudo grep -e "deny =" -e "fail_interval =" /etc/security/faillock.conf
deny = 3
fail_interval = 900
If the "deny" option is set to "0", more than "3", is missing, or is commented out, this is a finding.
If the "fail_interval" option is set to less than "900", is missing, or is commented out, this is a finding.
Note: If the System Administrator demonstrates the use of an approved centralized account management method that locks an account after three unsuccessful logon attempts within a period of 15 minutes, this requirement is Not Applicable.
Fix Text (F-56349r824161_fix)
Configure the operating system to lock an account when three unsuccessful logon attempts occur in 15 minutes.
Add/Modify the "/etc/security/faillock.conf" file to match the following lines:
deny = 3
fail_interval = 900