mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-22 13:37:02 +01:00
IMP(8.2.4): add exceptions in check and apply
Apply shellcheck recommendations
This commit is contained in:
parent
4bddd8ee8b
commit
9ada868f43
@ -1,5 +1,6 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
# run-shellcheck
|
||||||
#
|
#
|
||||||
# CIS Debian Hardening
|
# CIS Debian Hardening
|
||||||
#
|
#
|
||||||
@ -11,33 +12,54 @@
|
|||||||
set -e # One error, it's over
|
set -e # One error, it's over
|
||||||
set -u # One variable unset, it's over
|
set -u # One variable unset, it's over
|
||||||
|
|
||||||
|
# shellcheck disable=2034
|
||||||
HARDENING_LEVEL=3
|
HARDENING_LEVEL=3
|
||||||
|
# shellcheck disable=2034
|
||||||
DESCRIPTION="Create and set permissions on syslog-ng logfiles."
|
DESCRIPTION="Create and set permissions on syslog-ng logfiles."
|
||||||
|
|
||||||
PERMISSIONS='640'
|
PERMISSIONS=''
|
||||||
USER='root'
|
USER=''
|
||||||
GROUP='adm'
|
GROUP=''
|
||||||
|
EXCEPTIONS=''
|
||||||
|
|
||||||
# This function will be called if the script status is on enabled / audit mode
|
# This function will be called if the script status is on enabled / audit mode
|
||||||
audit () {
|
audit () {
|
||||||
FILES=$(grep "file(" $SYSLOG_BASEDIR/syslog-ng.conf | grep '"' | cut -d'"' -f 2)
|
FILES=$(grep "file(" "$SYSLOG_BASEDIR"/syslog-ng.conf | grep '"' | cut -d'"' -f 2)
|
||||||
for FILE in $FILES; do
|
for FILE in $FILES; do
|
||||||
does_file_exist $FILE
|
does_file_exist "$FILE"
|
||||||
if [ $FNRET != 0 ]; then
|
if [ "$FNRET" != 0 ]; then
|
||||||
warn "$FILE does not exist"
|
warn "$FILE does not exist"
|
||||||
else
|
else
|
||||||
has_file_correct_ownership $FILE $USER $GROUP
|
FOUND_EXC=0
|
||||||
if [ $FNRET = 0 ]; then
|
if grep "$FILE" <(tr ' ' '\n' <<< "$EXCEPTIONS" | cut -d ":" -f 1); then
|
||||||
ok "$FILE has correct ownership"
|
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
|
else
|
||||||
crit "$FILE ownership was not set to $USER:$GROUP"
|
crit "$FILE ownership was not set to $USER:$GROUP"
|
||||||
fi
|
fi
|
||||||
has_file_correct_permissions $FILE $PERMISSIONS
|
has_file_correct_permissions "$FILE" "$PERMISSIONS"
|
||||||
if [ $FNRET = 0 ]; then
|
if [ "$FNRET" = 0 ]; then
|
||||||
ok "$FILE has correct permissions"
|
ok "$FILE has correct permissions ($PERMISSIONS)"
|
||||||
else
|
else
|
||||||
crit "$FILE permissions were not set to $PERMISSIONS"
|
crit "$FILE permissions were not set to $PERMISSIONS"
|
||||||
fi
|
fi
|
||||||
|
if [ "$FOUND_EXC" = 1 ]; then
|
||||||
|
debug "Resetting user:group:perm"
|
||||||
|
USER="$user_bak"
|
||||||
|
GROUP="$group_bak"
|
||||||
|
PERMISSIONS="$perm_bak"
|
||||||
|
fi
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
@ -45,24 +67,42 @@ audit () {
|
|||||||
# This function will be called if the script status is on enabled mode
|
# This function will be called if the script status is on enabled mode
|
||||||
apply () {
|
apply () {
|
||||||
for FILE in $FILES; do
|
for FILE in $FILES; do
|
||||||
does_file_exist $FILE
|
does_file_exist "$FILE"
|
||||||
if [ $FNRET != 0 ]; then
|
if [ "$FNRET" != 0 ]; then
|
||||||
info "$FILE does not exist"
|
info "$FILE does not exist"
|
||||||
touch $FILE
|
touch "$FILE"
|
||||||
fi
|
fi
|
||||||
has_file_correct_ownership $FILE $USER $GROUP
|
FOUND_EXC=0
|
||||||
if [ $FNRET = 0 ]; then
|
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"
|
ok "$FILE has correct ownership"
|
||||||
else
|
else
|
||||||
warn "fixing $FILE ownership to $USER:$GROUP"
|
warn "fixing $FILE ownership to $USER:$GROUP"
|
||||||
chown $USER:$GROUP $FILE
|
chown "$USER":"$GROUP" "$FILE"
|
||||||
fi
|
fi
|
||||||
has_file_correct_permissions $FILE $PERMISSIONS
|
has_file_correct_permissions "$FILE" "$PERMISSIONS"
|
||||||
if [ $FNRET = 0 ]; then
|
if [ "$FNRET" = 0 ]; then
|
||||||
ok "$FILE has correct permissions"
|
ok "$FILE has correct permissions"
|
||||||
else
|
else
|
||||||
info "fixing $FILE permissions to $PERMISSIONS"
|
info "fixing $FILE permissions to $PERMISSIONS"
|
||||||
chmod 0$PERMISSIONS $FILE
|
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
|
fi
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
@ -72,18 +112,24 @@ create_config() {
|
|||||||
cat <<EOF
|
cat <<EOF
|
||||||
status=audit
|
status=audit
|
||||||
SYSLOG_BASEDIR='/etc/syslog-ng'
|
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
|
EOF
|
||||||
}
|
}
|
||||||
|
|
||||||
# This function will check config parameters required
|
# This function will check config parameters required
|
||||||
check_config() {
|
check_config() {
|
||||||
does_user_exist $USER
|
does_user_exist "$USER"
|
||||||
if [ $FNRET != 0 ]; then
|
if [ "$FNRET" != 0 ]; then
|
||||||
crit "$USER does not exist"
|
crit "$USER does not exist"
|
||||||
exit 128
|
exit 128
|
||||||
fi
|
fi
|
||||||
does_group_exist $GROUP
|
does_group_exist $GROUP
|
||||||
if [ $FNRET != 0 ]; then
|
if [ "$FNRET" != 0 ]; then
|
||||||
crit "$GROUP does not exist"
|
crit "$GROUP does not exist"
|
||||||
exit 128
|
exit 128
|
||||||
fi
|
fi
|
||||||
@ -100,8 +146,9 @@ if [ -z "$CIS_ROOT_DIR" ]; then
|
|||||||
fi
|
fi
|
||||||
|
|
||||||
# Main function, will call the proper functions given the configuration (audit, enabled, disabled)
|
# Main function, will call the proper functions given the configuration (audit, enabled, disabled)
|
||||||
if [ -r $CIS_ROOT_DIR/lib/main.sh ]; then
|
if [ -r "$CIS_ROOT_DIR"/lib/main.sh ]; then
|
||||||
. $CIS_ROOT_DIR/lib/main.sh
|
# shellcheck source=/opt/debian-cis/lib/main.sh
|
||||||
|
. "$CIS_ROOT_DIR"/lib/main.sh
|
||||||
else
|
else
|
||||||
echo "Cannot find main.sh, have you correctly defined your root directory? Current value is $CIS_ROOT_DIR in /etc/default/cis-hardening"
|
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
|
exit 128
|
||||||
|
@ -6,5 +6,22 @@ test_audit() {
|
|||||||
# shellcheck disable=2154
|
# shellcheck disable=2154
|
||||||
run blank /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
run blank /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
||||||
|
|
||||||
# TODO fill comprehensive tests
|
|
||||||
|
describe Creating failed state
|
||||||
|
touch /var/log/auth.log
|
||||||
|
touch /var/log/kern.log
|
||||||
|
register_test retvalshouldbe 1
|
||||||
|
run failing /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
||||||
|
|
||||||
|
describe Setting exceptions
|
||||||
|
echo 'EXCEPTIONS=/var/log/auth.log:root:root:600' >> /opt/debian-cis/etc/conf.d/"${script}".cfg
|
||||||
|
register_test retvalshouldbe 1
|
||||||
|
run excepandfail /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
||||||
|
|
||||||
|
describe Correcting situation
|
||||||
|
sed -i 's/audit/enabled/' /opt/debian-cis/etc/conf.d/"${script}".cfg
|
||||||
|
/opt/debian-cis/bin/hardening/"${script}".sh || true
|
||||||
|
|
||||||
|
register_test retvalshouldbe 0
|
||||||
|
run resolved /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user