mirror of
https://github.com/ovh/debian-cis.git
synced 2025-07-04 00:09:48 +02:00

* feat: add "--set-version" option This feature will allow to chose a specific cis version to run, like debian 11 or debian 12 * chore: configure current repository as a version And use it as default version. To this end, the scripts in bin/hardening have been made generic by removing the associated recommendation number. Only impact is if you are used to execute scripts directly from bin/hardening. In this case, please use the "bin/hardening.sh" wrapper as intended. I had to rename 2.3.1_disable_nis.sh to uninstall_nis.sh, as it was conflicting with 2.3.1_disable_nis.sh Also, there was a doublon between 1.1.1.8_disable_cramfs.sh and 99.1.1.1_disable_cramfs.sh ; the former was kept * chore: remove CIS recommendation numbers from bin/hardening scripts * fix: some tests are failing find_ungrouped_files.sh and find_unowned_files.sh tests can not be executed multiple times: - test repository is not cleaned - configuration is updated multiple times Those tests are also failing, because: - the sed to change the status in the configuration was also changing the test folder path. - missing /proc in EXCLUDED paths - the EXCLUDED configuration doesn't have the correct format for egrep --------- Co-authored-by: Damien Cavagnini <damien.cavagnini@corp.ovh.com>
176 lines
5.9 KiB
Bash
Executable File
176 lines
5.9 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# run-shellcheck
|
|
#
|
|
# CIS Debian Hardening
|
|
#
|
|
|
|
#
|
|
# Create and Set Permissions on syslog-ng Log Files (Scored)
|
|
#
|
|
|
|
set -e # One error, it's over
|
|
set -u # One variable unset, it's over
|
|
|
|
# shellcheck disable=2034
|
|
HARDENING_LEVEL=3
|
|
# shellcheck disable=2034
|
|
DESCRIPTION="Create and set permissions on syslog-ng logfiles."
|
|
|
|
# Note: this is not exacly the same check as the one described in CIS PDF
|
|
|
|
PACKAGE='syslog-ng'
|
|
PERMISSIONS=''
|
|
USER=''
|
|
GROUP=''
|
|
EXCEPTIONS=''
|
|
|
|
# This function will be called if the script status is on enabled / audit mode
|
|
audit() {
|
|
is_pkg_installed "$PACKAGE"
|
|
if [ "$FNRET" != 0 ]; then
|
|
crit "$PACKAGE is not installed!"
|
|
else
|
|
FILES=$(grep "file(" "$SYSLOG_BASEDIR"/syslog-ng.conf | grep '"' | cut -d'"' -f 2)
|
|
for FILE in $FILES; do
|
|
does_file_exist "$FILE"
|
|
if [ "$FNRET" != 0 ]; then
|
|
warn "$FILE does not exist"
|
|
else
|
|
FOUND_EXC=0
|
|
if grep -q "$FILE" <(tr ' ' '\n' <<<"$EXCEPTIONS" | cut -d ":" -f 1); then
|
|
debug "$FILE is found in exceptions"
|
|
debug "Setting special user:group:perm"
|
|
FOUND_EXC=1
|
|
local user_bak="$USER"
|
|
local group_bak="$GROUP"
|
|
local perm_bak="$PERMISSIONS"
|
|
USER="$(tr ' ' '\n' <<<"$EXCEPTIONS" | grep "$FILE" | cut -d':' -f 2)"
|
|
GROUP="$(tr ' ' '\n' <<<"$EXCEPTIONS" | grep "$FILE" | cut -d':' -f 3)"
|
|
PERMISSIONS="$(tr ' ' '\n' <<<"$EXCEPTIONS" | grep "$FILE" | cut -d':' -f 4)"
|
|
fi
|
|
has_file_correct_ownership "$FILE" "$USER" "$GROUP"
|
|
if [ "$FNRET" = 0 ]; then
|
|
ok "$FILE has correct ownership ($USER:$GROUP)"
|
|
else
|
|
crit "$FILE ownership was not set to $USER:$GROUP"
|
|
fi
|
|
has_file_correct_permissions "$FILE" "$PERMISSIONS"
|
|
if [ "$FNRET" = 0 ]; then
|
|
ok "$FILE has correct permissions ($PERMISSIONS)"
|
|
else
|
|
crit "$FILE permissions were not set to $PERMISSIONS"
|
|
fi
|
|
if [ "$FOUND_EXC" = 1 ]; then
|
|
debug "Resetting user:group:perm"
|
|
USER="$user_bak"
|
|
GROUP="$group_bak"
|
|
PERMISSIONS="$perm_bak"
|
|
fi
|
|
fi
|
|
done
|
|
fi
|
|
}
|
|
|
|
# This function will be called if the script status is on enabled mode
|
|
apply() {
|
|
is_pkg_installed "$PACKAGE"
|
|
if [ "$FNRET" != 0 ]; then
|
|
crit "$PACKAGE is not installed!"
|
|
else
|
|
for FILE in $FILES; do
|
|
does_file_exist "$FILE"
|
|
if [ "$FNRET" != 0 ]; then
|
|
info "$FILE does not exist"
|
|
filedir=$(dirname "${FILE#/var/log/}")
|
|
if [ ! "$filedir" = "." ] && [ ! -d /var/log/"$filedir" ]; then
|
|
debug "Creating /var/log/$filedir for $FILE"
|
|
debug "mkdir -p /var/log/$filedir"
|
|
mkdir -p /var/log/"$filedir"
|
|
fi
|
|
touch "$FILE"
|
|
fi
|
|
FOUND_EXC=0
|
|
if grep "$FILE" <(tr ' ' '\n' <<<"$EXCEPTIONS" | cut -d ":" -f 1); then
|
|
debug "$FILE is found in exceptions"
|
|
debug "Setting special user:group:perm"
|
|
FOUND_EXC=1
|
|
local user_bak="$USER"
|
|
local group_bak="$GROUP"
|
|
local perm_bak="$PERMISSIONS"
|
|
USER="$(tr ' ' '\n' <<<"$EXCEPTIONS" | grep "$FILE" | cut -d':' -f 2)"
|
|
GROUP="$(tr ' ' '\n' <<<"$EXCEPTIONS" | grep "$FILE" | cut -d':' -f 3)"
|
|
PERMISSIONS="$(tr ' ' '\n' <<<"$EXCEPTIONS" | grep "$FILE" | cut -d':' -f 4)"
|
|
fi
|
|
has_file_correct_ownership "$FILE" "$USER" "$GROUP"
|
|
if [ "$FNRET" = 0 ]; then
|
|
ok "$FILE has correct ownership"
|
|
else
|
|
warn "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
|
|
if [ "$FOUND_EXC" = 1 ]; then
|
|
debug "Resetting user:group:perm"
|
|
USER="$user_bak"
|
|
GROUP="$group_bak"
|
|
PERMISSIONS="$perm_bak"
|
|
fi
|
|
done
|
|
fi
|
|
}
|
|
|
|
# This function will create the config file for this check with default values
|
|
create_config() {
|
|
cat <<EOF
|
|
status=audit
|
|
SYSLOG_BASEDIR='/etc/syslog-ng'
|
|
PERMISSIONS='640'
|
|
USER='root'
|
|
GROUP='adm'
|
|
# Put exceptions here with file:user:group:permissions
|
|
# example: /dev/null:root:root:666
|
|
EXCEPTIONS=''
|
|
EOF
|
|
}
|
|
|
|
# This function will check config parameters required
|
|
check_config() {
|
|
does_user_exist "$USER"
|
|
if [ "$FNRET" != 0 ]; then
|
|
crit "$USER does not exist"
|
|
exit 128
|
|
fi
|
|
does_group_exist "$GROUP"
|
|
if [ "$FNRET" != 0 ]; then
|
|
crit "$GROUP does not exist"
|
|
exit 128
|
|
fi
|
|
}
|
|
|
|
# Source Root Dir Parameter
|
|
if [ -r /etc/default/cis-hardening ]; then
|
|
# shellcheck source=../../debian/default
|
|
. /etc/default/cis-hardening
|
|
fi
|
|
if [ -z "$CIS_LIB_DIR" ]; then
|
|
echo "There is no /etc/default/cis-hardening file nor cis-hardening directory in current environment."
|
|
echo "Cannot source CIS_LIB_DIR variable, aborting."
|
|
exit 128
|
|
fi
|
|
|
|
# Main function, will call the proper functions given the configuration (audit, enabled, disabled)
|
|
if [ -r "${CIS_LIB_DIR}"/main.sh ]; then
|
|
# shellcheck source=../../lib/main.sh
|
|
. "${CIS_LIB_DIR}"/main.sh
|
|
else
|
|
echo "Cannot find main.sh, have you correctly defined your root directory? Current value is $CIS_LIB_DIR in /etc/default/cis-hardening"
|
|
exit 128
|
|
fi
|