A system administrator needs to monitor file access attempts to /etc/shadow using auditd. Which auditctl command sets up the watch?
Correct use of -w to watch file with write and attribute permissions.
Why this answer
The correct syntax is 'auditctl -w /etc/shadow -p wa -k shadow_watch'. The -w specifies the file, -p wa watches for write and attribute changes (access is implied), but the -k is for a key. The other options have incorrect flags or order.