blob: 481c2df8ab99b05ab964b15f470dc954af3c2cca [file] [log] [blame]
Dmitry Teselkin11ef3732018-09-03 15:32:07 +03001# CIS 6.1.2 Ensure permissions on /etc/passwd are configured
2#
3# Description
4# ===========
5# The /etc/passwd file contains user account information that is used by
6# many system utilities and therefore must be readable for these utilities
7# to operate.
8#
9# Rationale
10# =========
11# It is critical to ensure that the /etc/passwd file is protected from
12# unauthorized write access. Although it is protected by default, the file
13# permissions could be changed either inadvertently or through malicious actions.
14#
15# Audit
16# =====
17# Run the following command and verify Uid and Gid are both 0/root and
18# Access is 644 :
19#
20# # stat /etc/passwd
21# Access: (0644/-rw-r--r--) Uid: (0/root) Gid: (0/root)
22#
23# Remediation
24# ===========
25# Run the following command to set permissions on /etc/passwd :
26#
27# # chown root:root /etc/passwd
28# # chmod 644 /etc/passwd
29#
30parameters:
31 linux:
32 system:
33 file:
34 /etc/passwd:
35 user: 'root'
36 group: 'root'
37 mode: '0644'
38