Verify Group Who Owns Backup shadow File
An XCCDF Rule
Description
To properly set the owner of /etc/shadow-
, run the command:
$ sudo chown root /etc/shadow-
Rationale
The /etc/shadow-
file is a backup file of /etc/shadow
, and as such,
it contains the list of local system accounts and password hashes.
Protection of this file is critical for system security.
- ID
- xccdf_org.ssgproject.content_rule_file_owner_backup_etc_shadow
- Severity
- Medium
- References
- Updated
Remediation - Ansible
- name: Test for existence /etc/shadow-
stat:
path: /etc/shadow-
register: file_exists
tags:
- NIST-800-53-AC-6 (1)
Remediation - Shell Script
chown 0 /etc/shadow-