Skip to content

Verify /boot/grub2/user.cfg Permissions

An XCCDF Rule

Description

File permissions for /boot/grub2/user.cfg should be set to 600. To properly set the permissions of /boot/grub2/user.cfg, run the command:

$ sudo chmod 600 /boot/grub2/user.cfg

Rationale

Proper permissions ensure that only the root user can read or modify important boot parameters.

ID
xccdf_org.ssgproject.content_rule_file_permissions_efi_user_cfg
Severity
Medium
References
Updated



Remediation - Ansible

- name: Gather the package facts
  package_facts:
    manager: auto
  tags:
  - NIST-800-171-3.4.5
  - NIST-800-53-AC-6(1)

Remediation - Shell Script

# Remediation is applicable only in certain platforms
if [ -d /sys/firmware/efi ] && rpm --quiet -q grub2-common && { [ ! -f /.dockerenv ] && [ ! -f /run/.containerenv ]; }; then

chmod u-s,g-xwrs,o-xwrt /boot/grub2/user.cfg

else