UCF STIG Viewer Logo

The operating system must automatically audit account creation.


Overview

Finding ID Version Rule ID IA Controls Severity
V-38531 RHEL-06-000174 SV-50332r1_rule Low
Description
In addition to auditing new user and group accounts, these watches will alert the system administrator(s) to any modifications. Any unexpected users, groups, or modifications should be investigated for legitimacy.
STIG Date
Red Hat Enterprise Linux 6 Security Technical Implementation Guide 2015-05-26

Details

Check Text ( C-46090r1_chk )
To determine if the system is configured to audit account changes, run the following command:

auditctl -l | egrep '(/etc/passwd|/etc/shadow|/etc/group|/etc/gshadow|/etc/security/opasswd)'

If the system is configured to watch for account changes, lines should be returned for each file specified (and with "perm=wa" for each).
If the system is not configured to audit account changes, this is a finding.
Fix Text (F-43480r1_fix)
Add the following to "/etc/audit/audit.rules", in order to capture events that modify account changes:

# audit_account_changes
-w /etc/group -p wa -k audit_account_changes
-w /etc/passwd -p wa -k audit_account_changes
-w /etc/gshadow -p wa -k audit_account_changes
-w /etc/shadow -p wa -k audit_account_changes
-w /etc/security/opasswd -p wa -k audit_account_changes