Information
Privileged programs are subject to escalation-of-privilege attacks, which attempt to subvert their normal role of providing some necessary but limited capability. As such, motivation exists to monitor these programs for unusual activity.
NOTE: Nessus has not performed this check. Please review the benchmark to ensure target compliance.
Solution
At a minimum, the audit system should collect the execution of privileged commands for all users and root. To find the relevant setuid / setgid programs, run the following command for each local partition [PART]:
$ sudo find [PART] -xdev -type f -perm /6000 2>/dev/null
Then, for each setuid / setgid program on the system, add a line of the following form to '/etc/audit/audit.rules', where [SETUID_PROG_PATH] is the full path to each setuid / setgid program in the list:
-a always,exit -F path=[SETUID_PROG_PATH] -F perm=x -F auid>=500 -F auid!=4294967295 -k privileged