2018-10-09 14:08:07 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#
|
2018-10-17 21:17:01 +02:00
|
|
|
# harbian audit 9 Hardening
|
2018-10-09 14:08:07 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
#
|
2019-05-13 11:34:34 +02:00
|
|
|
# 10.1.8 Set FAIL_DELAY Parameters Using pam_faildelay (Scored)
|
2019-04-12 10:07:44 +02:00
|
|
|
# Author : Samson wen, Samson <sccxboy@gmail.com>
|
2018-10-09 14:08:07 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
set -e # One error, it's over
|
|
|
|
set -u # One variable unset, it's over
|
|
|
|
|
2018-10-16 01:53:08 +02:00
|
|
|
HARDENING_LEVEL=2
|
2018-10-09 14:08:07 +02:00
|
|
|
|
2018-10-16 01:53:08 +02:00
|
|
|
|
|
|
|
PACKAGE='libpam-modules'
|
|
|
|
PAMLIBNAME='pam_faildelay.so'
|
|
|
|
PATTERN='^auth.*pam_faildelay.so'
|
|
|
|
FILE='/etc/pam.d/login'
|
|
|
|
|
|
|
|
OPTIONNAME='delay'
|
|
|
|
|
|
|
|
# condition (microseconds)
|
|
|
|
CONDT_VAL=4000000
|
2018-10-09 14:08:07 +02:00
|
|
|
|
|
|
|
# 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!"
|
2018-10-09 15:27:57 +02:00
|
|
|
FNRET=1
|
2018-10-09 14:08:07 +02:00
|
|
|
else
|
|
|
|
ok "$PACKAGE is installed"
|
2018-10-16 01:53:08 +02:00
|
|
|
does_pattern_exist_in_file $FILE $PATTERN
|
|
|
|
if [ $FNRET = 0 ]; then
|
|
|
|
ok "$PATTERN is present in $FILE"
|
2018-12-05 08:10:06 +01:00
|
|
|
check_param_pair_by_pam $FILE $PAMLIBNAME $OPTIONNAME ge $CONDT_VAL
|
2018-10-09 14:08:07 +02:00
|
|
|
if [ $FNRET = 0 ]; then
|
2018-10-16 01:53:08 +02:00
|
|
|
ok "$OPTIONNAME set condition is $CONDT_VAL"
|
2018-10-09 14:08:07 +02:00
|
|
|
else
|
2019-05-21 05:43:16 +02:00
|
|
|
crit "$OPTIONNAME set condition is not equal or greater than $CONDT_VAL"
|
2018-10-09 14:08:07 +02:00
|
|
|
fi
|
2018-10-16 01:53:08 +02:00
|
|
|
else
|
|
|
|
crit "$PATTERN is not present in $FILE"
|
|
|
|
FNRET=2
|
|
|
|
fi
|
2018-10-09 14:08:07 +02:00
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
# This function will be called if the script status is on enabled mode
|
|
|
|
apply () {
|
|
|
|
if [ $FNRET = 0 ]; then
|
2018-10-16 01:53:08 +02:00
|
|
|
ok "$PACKAGE is installed"
|
2018-10-09 15:27:57 +02:00
|
|
|
elif [ $FNRET = 1 ]; then
|
2018-10-09 14:08:07 +02:00
|
|
|
crit "$PACKAGE is absent, installing it"
|
2019-12-27 20:51:09 +01:00
|
|
|
install_package $PACKAGE
|
2018-10-09 15:27:57 +02:00
|
|
|
elif [ $FNRET = 2 ]; then
|
2018-10-16 01:53:08 +02:00
|
|
|
crit "$PATTERN is not present in $FILE, add default config to $FILE"
|
|
|
|
add_line_file_before_pattern $FILE "auth optional pam_faildelay.so delay=4000000" "# Outputs an issue file prior to each login prompt (Replaces the"
|
2018-10-09 15:27:57 +02:00
|
|
|
elif [ $FNRET = 3 ]; then
|
2018-10-16 02:21:51 +02:00
|
|
|
crit "$FILE is not exist, please check"
|
2018-10-16 01:53:08 +02:00
|
|
|
elif [ $FNRET = 4 ]; then
|
2018-10-16 02:21:51 +02:00
|
|
|
crit "$OPTIONNAME is not conf"
|
|
|
|
add_option_to_auth_check $FILE $PAMLIBNAME "$OPTIONNAME=$CONDT_VAL"
|
|
|
|
elif [ $FNRET = 5 ]; then
|
|
|
|
crit "$OPTIONNAME set is not match legally, reset it to $CONDT_VAL"
|
|
|
|
reset_option_to_auth_check $FILE $PAMLIBNAME "$OPTIONNAME" "$CONDT_VAL"
|
2018-10-16 01:53:08 +02:00
|
|
|
fi
|
2018-10-09 14:08:07 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
# This function will check config parameters required
|
|
|
|
check_config() {
|
|
|
|
:
|
|
|
|
}
|
|
|
|
|
|
|
|
# Source Root Dir Parameter
|
|
|
|
if [ -r /etc/default/cis-hardening ]; then
|
|
|
|
. /etc/default/cis-hardening
|
|
|
|
fi
|
|
|
|
if [ -z "$CIS_ROOT_DIR" ]; then
|
|
|
|
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
|
|
|
|
|
|
|
|
# Main function, will call the proper functions given the configuration (audit, enabled, disabled)
|
|
|
|
if [ -r $CIS_ROOT_DIR/lib/main.sh ]; then
|
|
|
|
. $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
|