Verify Group Who Owns group File
An XCCDF Rule
Description
To properly set the group owner of /etc/group
, run the command:
$ sudo chgrp root /etc/group
Rationale
The /etc/group
file contains information regarding groups that are configured
on the system. Protection of this file is important for system security.
- ID
- xccdf_org.ssgproject.content_rule_file_groupowner_etc_group
- Severity
- Medium
- References
- Updated
Remediation - Shell Script
chgrp 0 /etc/group
Remediation - Ansible
- name: Test for existence /etc/group
stat:
path: /etc/group
register: file_exists
tags:
- CCE-82037-3