2017-12-20 15:14:30 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-11-23 17:10:37 +01:00
|
|
|
# run-shellcheck
|
2020-12-22 16:36:35 +01:00
|
|
|
#
|
|
|
|
# Legacy CIS Debian Hardening
|
2017-12-20 15:14:30 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
#
|
2020-12-22 16:36:35 +01:00
|
|
|
# 99.5.2.7 Ensure that legacy services rlogin, rlogind and rcp are disabled and not installed
|
2017-12-20 15:14:30 +01:00
|
|
|
#
|
2020-12-22 16:36:35 +01:00
|
|
|
|
2017-12-20 15:14:30 +01:00
|
|
|
set -e # One error, it's over
|
|
|
|
set -u # One variable unset, it's over
|
|
|
|
|
2021-02-17 11:51:51 +01:00
|
|
|
# shellcheck disable=2034
|
|
|
|
HARDENING_LEVEL=3
|
2017-12-20 15:14:30 +01:00
|
|
|
# shellcheck disable=2034
|
|
|
|
DESCRIPTION="Ensure that legacy services rlogin, rlogind and rcp are disabled and not installed"
|
2021-02-17 11:51:51 +01:00
|
|
|
|
2017-12-20 15:14:30 +01:00
|
|
|
# shellcheck disable=2034
|
|
|
|
SERVICES="rlogin rlogind rcp"
|
|
|
|
|
|
|
|
# This function will be called if the script status is on enabled / audit mode
|
2020-12-04 14:08:01 +01:00
|
|
|
audit() {
|
|
|
|
for SERVICE in $SERVICES; do
|
2017-12-20 15:14:30 +01:00
|
|
|
info "Checking if $SERVICE is enabled and installed"
|
|
|
|
is_service_enabled "$SERVICE"
|
|
|
|
if [ "$FNRET" != 0 ]; then
|
|
|
|
ok "$SERVICE is disabled"
|
|
|
|
else
|
|
|
|
crit "$SERVICE is enabled"
|
|
|
|
fi
|
|
|
|
is_pkg_installed "$SERVICE"
|
|
|
|
if [ "$FNRET" != 0 ]; then
|
|
|
|
ok "$SERVICE is not installed"
|
|
|
|
else
|
|
|
|
warn "$SERVICE is installed"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# This function will be called if the script status is on enabled mode
|
2020-12-04 14:08:01 +01:00
|
|
|
apply() {
|
2017-12-20 15:14:30 +01:00
|
|
|
:
|
|
|
|
}
|
|
|
|
|
|
|
|
# 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
|
2017-12-20 15:14:30 +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, cannot source CIS_ROOT_DIR variable, aborting"
|
2017-12-20 15:14:30 +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-11-27 09:18:00 +01:00
|
|
|
# shellcheck source=../../lib/main.sh
|
2020-11-27 09:29:11 +01:00
|
|
|
. "$CIS_ROOT_DIR"/lib/main.sh
|
2017-12-20 15:14:30 +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
|