#!/bin/bash # # CIS Debian 7/8 Hardening # # # 8.2.4 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 HARDENING_LEVEL=3 DESCRIPTION="Create and set permissions on syslog-ng logfiles." PERMISSIONS='640' USER='root' GROUP='adm' # This function will be called if the script status is on enabled / audit mode audit () { 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 has_file_correct_ownership $FILE $USER $GROUP if [ $FNRET = 0 ]; then ok "$FILE has correct ownership" 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" else crit "$FILE permissions were not set to $PERMISSIONS" fi fi done } # This function will be called if the script status is on enabled mode apply () { for FILE in $FILES; do does_file_exist $FILE if [ $FNRET != 0 ]; then info "$FILE does not exist" touch $FILE 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 done } # This function will create the config file for this check with default values create_config() { cat <