Skip to content

Verify Permissions on Backup shadow File

An XCCDF Rule

Description

To properly set the permissions of /etc/shadow-, run the command:

$ sudo chmod 0000 /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_permissions_backup_etc_shadow
Severity
Medium
References
Updated



Remediation - Ansible

- name: Test for existence /etc/shadow-
  stat:
    path: /etc/shadow-
  register: file_exists
  tags:
  - CCE-83416-8

Remediation - Shell Script






chmod u-xwrs,g-xwrs,o-xwrt /etc/shadow-