5.1.5 Ensure an Inventory of user accounts is established and maintained

Information

AIX defines

Administrator

accounts with the with the attribute

admin

. When

true

the account is Administrator and when

false

the account is considered User

An inventory of accounts with the attribute

"admin=true"

allows verification that all accounts considered

administrative

are so labeled by the system.

NOTE: Nessus has not performed this check. Please review the benchmark to ensure target compliance.

Solution

A printable report can be prepared using the following example:

cnt=0
printf "%4s%68s
" "AIX" "User Accounts"

lsuser -R files -a admin ALL | while read usr adm; do
if [[ ${adm} = "admin=false" ]] ; then
printf "%12s" ${usr}
let cnt=cnt+1
[[ $(expr ${cnt} % 6) == 0 ]] && print
fi
done
[[ $(expr ${cnt} % 6) != 0 ]] && print

Impact:

The impact of

'admin=true'

is two-fold.a) a label for identifying accounts considered related to system administrationb) providing additional controls for account management.On AIX, an account with the attribute 'admin=true' requires a security role of

Senior Security Admin

to make modifications to the account attributes.

See Also

https://workbench.cisecurity.org/benchmarks/10385

Item Details

Category: ACCESS CONTROL

References: 800-53|AC-2

Plugin: Unix

Control ID: 5f0a46b30689e3cd3374cc9dad5f3bd27f0ddd47b8117c7f869f7a6f5311571c