2020-11-03 09:38:13 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-11-23 17:10:37 +01:00
|
|
|
# run-shellcheck
|
2020-11-03 09:38:13 +01:00
|
|
|
#
|
|
|
|
# Legacy CIS Debian Hardening
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
2020-12-22 16:36:35 +01:00
|
|
|
# 99.2.2 Ensure telnet server is not enabled (Scored)
|
2020-11-03 09:38:13 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
# Note: this check is not anymore in CIS hardening but we decided to keep it anyway
|
|
|
|
|
|
|
|
set -e # One error, it's over
|
|
|
|
set -u # One variable unset, it's over
|
|
|
|
|
2020-11-27 09:18:00 +01:00
|
|
|
# shellcheck disable=2034
|
2020-11-03 09:38:13 +01:00
|
|
|
HARDENING_LEVEL=2
|
2020-11-27 09:18:00 +01:00
|
|
|
# shellcheck disable=2034
|
2020-11-03 09:38:13 +01:00
|
|
|
DESCRIPTION="Ensure telnet server is not enabled. Recommended alternative : sshd (OpenSSH-server)."
|
|
|
|
|
|
|
|
# Based on aptitude search '~Ptelnet-server'
|
|
|
|
PACKAGES='telnetd inetutils-telnetd telnetd-ssl krb5-telnetd heimdal-servers'
|
|
|
|
FILE='/etc/inetd.conf'
|
|
|
|
PATTERN='^telnet'
|
|
|
|
|
|
|
|
# This function will be called if the script status is on enabled / audit mode
|
2020-12-04 14:08:01 +01:00
|
|
|
audit() {
|
2020-11-03 09:38:13 +01:00
|
|
|
for PACKAGE in $PACKAGES; do
|
2020-11-27 09:29:11 +01:00
|
|
|
is_pkg_installed "$PACKAGE"
|
|
|
|
if [ "$FNRET" = 0 ]; then
|
2020-11-03 09:38:13 +01:00
|
|
|
warn "$PACKAGE is installed, checking configuration"
|
2020-12-10 09:50:33 +01:00
|
|
|
does_file_exist "$FILE"
|
2020-11-27 09:29:11 +01:00
|
|
|
if [ "$FNRET" != 0 ]; then
|
2020-11-03 09:38:13 +01:00
|
|
|
ok "$FILE does not exist"
|
|
|
|
else
|
2020-12-10 09:50:33 +01:00
|
|
|
does_pattern_exist_in_file "$FILE" "$PATTERN"
|
2020-11-27 09:29:11 +01:00
|
|
|
if [ "$FNRET" = 0 ]; then
|
2020-11-03 09:38:13 +01:00
|
|
|
crit "$PATTERN exists, $PACKAGE services are enabled!"
|
|
|
|
else
|
|
|
|
ok "$PATTERN is not present in $FILE"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
ok "$PACKAGE is absent"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# This function will be called if the script status is on enabled mode
|
2020-12-04 14:08:01 +01:00
|
|
|
apply() {
|
2020-11-03 09:38:13 +01:00
|
|
|
for PACKAGE in $PACKAGES; do
|
2020-11-27 09:29:11 +01:00
|
|
|
is_pkg_installed "$PACKAGE"
|
|
|
|
if [ "$FNRET" = 0 ]; then
|
2020-11-03 09:38:13 +01:00
|
|
|
crit "$PACKAGE is installed, purging it"
|
2020-11-27 09:29:11 +01:00
|
|
|
apt-get purge "$PACKAGE" -y
|
2020-11-03 09:38:13 +01:00
|
|
|
apt-get autoremove
|
|
|
|
else
|
|
|
|
ok "$PACKAGE is absent"
|
|
|
|
fi
|
2020-12-10 09:50:33 +01:00
|
|
|
does_file_exist "$FILE"
|
2020-11-27 09:29:11 +01:00
|
|
|
if [ "$FNRET" != 0 ]; then
|
2020-11-03 09:38:13 +01:00
|
|
|
ok "$FILE does not exist"
|
|
|
|
else
|
|
|
|
info "$FILE exists, checking patterns"
|
2020-12-10 09:50:33 +01:00
|
|
|
does_pattern_exist_in_file "$FILE" "$PATTERN"
|
2020-11-27 09:29:11 +01:00
|
|
|
if [ "$FNRET" = 0 ]; then
|
2020-11-03 09:38:13 +01:00
|
|
|
warn "$PATTERN is present in $FILE, purging it"
|
|
|
|
backup_file $FILE
|
2020-12-10 08:34:57 +01:00
|
|
|
# shellcheck disable=SC2001
|
2020-12-04 14:08:01 +01:00
|
|
|
ESCAPED_PATTERN=$(sed "s/|\|(\|)/\\\&/g" <<<$PATTERN)
|
2020-12-10 09:50:33 +01:00
|
|
|
sed -ie "s/$ESCAPED_PATTERN/#&/g" "$FILE"
|
2020-11-03 09:38:13 +01:00
|
|
|
else
|
|
|
|
ok "$PATTERN is not present in $FILE"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# This function will check config parameters required
|
|
|
|
check_config() {
|
|
|
|
:
|
|
|
|
}
|
|
|
|
|
|
|
|
# Source Root Dir Parameter
|
|
|
|
if [ -r /etc/default/cis-hardening ]; then
|
2020-12-04 14:08:01 +01:00
|
|
|
# shellcheck source=../../debian/default
|
2020-11-03 09:38:13 +01: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."
|
2020-11-03 09:38:13 +01:00
|
|
|
exit 128
|
|
|
|
fi
|
|
|
|
|
|
|
|
# Main function, will call the proper functions given the configuration (audit, enabled, disabled)
|
2020-11-27 09:29:11 +01:00
|
|
|
if [ -r "$CIS_ROOT_DIR"/lib/main.sh ]; then
|
2020-12-04 14:08:01 +01:00
|
|
|
# shellcheck source=../../lib/main.sh
|
2020-11-27 09:29:11 +01:00
|
|
|
. "$CIS_ROOT_DIR"/lib/main.sh
|
2020-11-03 09:38:13 +01:00
|
|
|
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
|