Verify /boot/grub2/grub.cfg Group Ownership
An XCCDF Rule
Description
The file /boot/grub2/grub.cfg
should
be group-owned by the root
group to prevent
destruction or modification of the file.
To properly set the group owner of /boot/grub2/grub.cfg
, run the command:
$ sudo chgrp root /boot/grub2/grub.cfg
Rationale
The root
group is a highly-privileged group. Furthermore, the group-owner of this
file should not have any access privileges anyway.
- ID
- xccdf_org.ssgproject.content_rule_file_groupowner_grub2_cfg
- Severity
- Medium
- References
- Updated
Remediation - Shell Script
# Remediation is applicable only in certain platforms
if [ ! -d /sys/firmware/efi ] && rpm --quiet -q grub2 && { [ ! -f /.dockerenv ] && [ ! -f /run/.containerenv ]; }; then
chgrp 0 /boot/grub2/grub.cfg
else
Remediation - Ansible
- name: Gather the package facts
package_facts:
manager: auto
tags:
- CCE-91623-9
- CJIS-5.5.2.2