Rule ID
SV-44900r1_rule
Version
V1R12
CCIs
If an account has a UID of 0, it has root authority. Multiple accounts with a UID of 0 afford more opportunity for potential intruders to guess a password for a privileged account.
Check the system for duplicate UID 0 assignments by listing all accounts assigned UID 0.
Procedure:
# cat /etc/passwd | awk -F":" '{print$1":"$3":"}' | grep ":0:"
If any accounts other than root are assigned UID 0, this is a finding.Remove or change the UID of accounts other than root that have UID 0.