2016-04-12 17:59:17 +02:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
#
|
2019-02-06 15:19:14 +01:00
|
|
|
# CIS Debian Hardening
|
2016-04-12 17:59:17 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
#
|
2019-08-29 16:02:39 +02:00
|
|
|
# 2.2.11 Ensure IMAP and POP server is not installed (Scored)
|
2016-04-12 17:59:17 +02:00
|
|
|
#
|
|
|
|
|
|
|
|
set -e # One error, it's over
|
|
|
|
set -u # One variable unset, it's over
|
|
|
|
|
2017-05-18 18:40:09 +02:00
|
|
|
HARDENING_LEVEL=3
|
2019-08-29 16:02:39 +02:00
|
|
|
DESCRIPTION="Ensure IMAP and POP servers are not installed"
|
2017-05-18 18:40:09 +02:00
|
|
|
HARDENING_EXCEPTION=mail
|
|
|
|
|
2016-04-12 17:59:17 +02:00
|
|
|
# Based on aptitude search '~Pimap-server' and aptitude search '~Ppop3-server'
|
|
|
|
PACKAGES='citadel-server courier-imap cyrus-imapd-2.4 dovecot-imapd mailutils-imap4d courier-pop cyrus-pop3d-2.4 dovecot-pop3d heimdal-servers mailutils-pop3d popa3d solid-pop3d xmail'
|
|
|
|
|
|
|
|
# This function will be called if the script status is on enabled / audit mode
|
|
|
|
audit () {
|
|
|
|
for PACKAGE in $PACKAGES; do
|
|
|
|
is_pkg_installed $PACKAGE
|
|
|
|
if [ $FNRET = 0 ]; then
|
2016-04-21 18:32:36 +02:00
|
|
|
crit "$PACKAGE is installed!"
|
2016-04-12 17:59:17 +02:00
|
|
|
else
|
|
|
|
ok "$PACKAGE is absent"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# This function will be called if the script status is on enabled mode
|
|
|
|
apply () {
|
|
|
|
for PACKAGE in $PACKAGES; do
|
|
|
|
is_pkg_installed $PACKAGE
|
|
|
|
if [ $FNRET = 0 ]; then
|
|
|
|
crit "$PACKAGE is installed, purging it"
|
|
|
|
apt-get purge $PACKAGE -y
|
|
|
|
apt-get autoremove
|
|
|
|
else
|
|
|
|
ok "$PACKAGE is absent"
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# This function will check config parameters required
|
|
|
|
check_config() {
|
|
|
|
:
|
|
|
|
}
|
|
|
|
|
|
|
|
# Source Root Dir Parameter
|
2017-10-25 14:50:39 +02:00
|
|
|
if [ -r /etc/default/cis-hardening ]; then
|
2016-04-18 17:39:14 +02:00
|
|
|
. /etc/default/cis-hardening
|
2017-10-25 14:50:39 +02:00
|
|
|
fi
|
|
|
|
if [ -z "$CIS_ROOT_DIR" ]; then
|
2017-11-17 15:13:27 +01:00
|
|
|
echo "There is no /etc/default/cis-hardening file nor cis-hardening directory in current environment."
|
2017-10-25 14:50:39 +02:00
|
|
|
echo "Cannot source CIS_ROOT_DIR variable, aborting."
|
|
|
|
exit 128
|
|
|
|
fi
|
2016-04-12 17:59:17 +02:00
|
|
|
|
|
|
|
# Main function, will call the proper functions given the configuration (audit, enabled, disabled)
|
2016-04-21 23:19:50 +02:00
|
|
|
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
|