debian-cis/bin/hardening/1.4.1_bootloader_ownership.sh

107 lines
2.8 KiB
Bash
Raw Normal View History

2016-04-07 08:43:37 +02:00
#!/bin/bash
# run-shellcheck
2016-04-07 08:43:37 +02:00
#
# CIS Debian Hardening
2016-04-07 08:43:37 +02:00
#
#
# 1.4.1 Ensure permissions on bootloader config are configured (Scored)
2016-04-07 08:43:37 +02:00
#
set -e # One error, it's over
set -u # One variable unset, it's over
# shellcheck disable=2034
HARDENING_LEVEL=1
# shellcheck disable=2034
DESCRIPTION="User and group root owner of grub bootloader config."
2016-04-07 08:43:37 +02:00
# Assertion : Grub Based.
FILE='/boot/grub/grub.cfg'
USER='root'
GROUP='root'
PERMISSIONS='400'
2016-04-07 08:43:37 +02:00
# This function will be called if the script status is on enabled / audit mode
2020-12-04 14:08:01 +01:00
audit() {
has_file_correct_ownership "$FILE" "$USER" "$GROUP"
if [ "$FNRET" = 0 ]; then
2016-04-07 08:43:37 +02:00
ok "$FILE has correct ownership"
else
crit "$FILE ownership was not set to $USER:$GROUP"
2020-12-04 14:08:01 +01:00
fi
has_file_correct_permissions "$FILE" "$PERMISSIONS"
if [ "$FNRET" = 0 ]; then
ok "$FILE has correct permissions"
else
crit "$FILE permissions were not set to $PERMISSIONS"
2020-12-04 14:08:01 +01:00
fi
2016-04-07 08:43:37 +02:00
}
# This function will be called if the script status is on enabled mode
2020-12-04 14:08:01 +01:00
apply() {
has_file_correct_ownership "$FILE" "$USER" "$GROUP"
if [ "$FNRET" = 0 ]; then
2016-04-07 08:43:37 +02:00
ok "$FILE has correct ownership"
else
info "fixing $FILE ownership to $USER:$GROUP"
chown $USER:$GROUP $FILE
fi
has_file_correct_permissions "$FILE" "$PERMISSIONS"
if [ "$FNRET" = 0 ]; then
ok "$FILE has correct permissions"
else
info "fixing $FILE permissions to $PERMISSIONS"
chmod 0"$PERMISSIONS" "$FILE"
fi
2016-04-07 08:43:37 +02:00
}
# This function will check config parameters required
check_config() {
2016-04-11 08:55:44 +02:00
is_pkg_installed "grub-pc"
if [ "$FNRET" != 0 ]; then
2016-04-11 08:55:44 +02:00
warn "Grub is not installed, not handling configuration"
exit 128
fi
2016-04-07 08:43:37 +02:00
does_user_exist $USER
if [ "$FNRET" != 0 ]; then
2016-04-07 08:43:37 +02:00
crit "$USER does not exist"
exit 128
fi
does_group_exist $GROUP
if [ "$FNRET" != 0 ]; then
2016-04-07 08:43:37 +02:00
crit "$GROUP does not exist"
exit 128
fi
does_file_exist $FILE
if [ "$FNRET" != 0 ]; then
2016-04-07 08:43:37 +02:00
crit "$FILE does not exist"
exit 128
fi
}
# Source Root Dir Parameter
if [ -r /etc/default/cis-hardening ]; then
2020-12-04 14:08:01 +01:00
# shellcheck source=../../debian/default
2016-04-18 17:39:14 +02:00
. /etc/default/cis-hardening
fi
if [ -z "$CIS_ROOT_DIR" ]; then
2020-12-04 14:08:01 +01:00
echo "There is no /etc/default/cis-hardening file nor cis-hardening directory in current environment."
echo "Cannot source CIS_ROOT_DIR variable, aborting."
exit 128
fi
2016-04-07 08:43:37 +02:00
# Main function, will call the proper functions given the configuration (audit, enabled, disabled)
if [ -r "$CIS_ROOT_DIR"/lib/main.sh ]; then
2020-12-04 14:08:01 +01:00
# shellcheck source=../../lib/main.sh
. "$CIS_ROOT_DIR"/lib/main.sh
else
echo "Cannot find main.sh, have you correctly defined your root directory? Current value is $CIS_ROOT_DIR in /etc/default/cis-hardening"
exit 128
fi