Information
The grub files contain information on boot settings and passwords for unlocking boot options.
Setting the permissions to read and write for root only prevents non-root users from seeing the boot parameters or changing them. Non-root users who read the boot parameters may be able to identify weaknesses in security upon boot and be able to exploit them.
Solution
Run the following command to set owner and group owner on the grub configuration files:
# find -L /boot/grub2/ -mindepth 1 -maxdepth 1 \
-type f \( ! -user root -o ! -group root \) -exec chown root:root {} +
Run the following command to set mode on the grub configuration files to 0600 or more restrictive:
# find -L /boot/grub2/ -mindepth 1 -maxdepth 1 -type f \
-perm /0177 -exec chmod u-x,go-rwx {} +