mirror of
https://github.com/ovh/debian-cis.git
synced 2025-08-04 14:21:15 +02:00

systemd_timesyncd_is_enabled_and_running.sh -> 2.3.2.2 rpcbind_is_disabled.sh -> 2.1.12 ftp_client_not_installed.sh -> 2.2.6 chrony_with_chrony_user.sh -> 2.3.3.2 ipv6_is_enabled.sh -> 3.1.1
107 lines
3.2 KiB
Bash
Executable File
107 lines
3.2 KiB
Bash
Executable File
#!/bin/bash
|
|
|
|
# run-shellcheck
|
|
#
|
|
# CIS Debian Hardening
|
|
#
|
|
|
|
#
|
|
# Ensure rpcbind services are not in use (Automated)
|
|
#
|
|
|
|
set -e # One error, it's over
|
|
set -u # One variable unset, it's over
|
|
|
|
# shellcheck disable=2034
|
|
HARDENING_LEVEL=3
|
|
# shellcheck disable=2034
|
|
DESCRIPTION="Ensure rpcbind services are not in use."
|
|
PACKAGE='rpcbind'
|
|
SERVICE="rpcbind.service"
|
|
SOCKET="rpcbind.socket"
|
|
|
|
# 2 scenario here:
|
|
# - rcpbind is a dependency for another package -> disable the service, disable the socket
|
|
# - rpcbind is not a dependency for another package -> remove the package
|
|
|
|
# This function will be called if the script status is on enabled / audit mode
|
|
audit() {
|
|
# 0 means true in bash
|
|
PACKAGE_INSTALLED=1
|
|
PACKAGE_IS_DEPENDENCY=1
|
|
SERVICE_ENABLED=1
|
|
SOCKET_ENABLED=1
|
|
|
|
is_pkg_installed "$PACKAGE"
|
|
[ "$FNRET" = 0 ] && PACKAGE_INSTALLED=0 # 0 means true in bash
|
|
|
|
is_pkg_a_dependency "$PACKAGE"
|
|
# dnsmasq is installed with dnsmasq-base, which
|
|
[ "$FNRET" = 0 ] && PACKAGE_IS_DEPENDENCY=0
|
|
|
|
is_service_enabled "$SERVICE"
|
|
[ "$FNRET" = 0 ] && SERVICE_ENABLED=0
|
|
|
|
is_socket_enabled "$SOCKET"
|
|
[ "$FNRET" = 0 ] && SOCKET_ENABLED=0
|
|
|
|
if [ "$PACKAGE_INSTALLED" -eq 0 ] && [ "$PACKAGE_IS_DEPENDENCY" -eq 1 ]; then
|
|
crit "$PACKAGE is installed and not a dependency"
|
|
|
|
elif [ "$PACKAGE_INSTALLED" -eq 0 ] && [ "$PACKAGE_IS_DEPENDENCY" -eq 0 ]; then
|
|
local active=1
|
|
[ "$SERVICE_ENABLED" -eq 0 ] && active=0 && crit "$SERVICE is enabled" && active=0
|
|
[ "$SOCKET_ENABLED" -eq 0 ] && active=0 && crit "$SOCKET_ENABLED is enabled"
|
|
|
|
[ "$active" -eq 1 ] && ok "$PACKAGE is not used"
|
|
|
|
fi
|
|
}
|
|
|
|
# This function will be called if the script status is on enabled mode
|
|
apply() {
|
|
audit
|
|
if [ "$PACKAGE_INSTALLED" -eq 0 ] && [ "$PACKAGE_IS_DEPENDENCY" -eq 1 ]; then
|
|
crit "$PACKAGE is installed and not a dependency, removing it"
|
|
apt_remove "$PACKAGE" -y
|
|
apt-get autoremove -y
|
|
elif [ "$PACKAGE_INSTALLED" -eq 0 ] && [ "$PACKAGE_IS_DEPENDENCY" -eq 0 ]; then
|
|
if [ "$SERVICE_ENABLED" -eq 0 ]; then
|
|
info "Stopping and masking $SERVICE"
|
|
systemctl stop "$SERVICE"
|
|
systemctl mask "$SERVICE"
|
|
fi
|
|
|
|
if [ "$SOCKET_ENABLED" -eq 0 ]; then
|
|
info "Stopping and masking $SOCKET"
|
|
systemctl stop "$SOCKET"
|
|
systemctl mask "$SOCKET"
|
|
fi
|
|
fi
|
|
}
|
|
|
|
# This function will check config parameters required
|
|
check_config() {
|
|
:
|
|
}
|
|
|
|
# Source Root Dir Parameter
|
|
if [ -r /etc/default/cis-hardening ]; then
|
|
# shellcheck source=../../debian/default
|
|
. /etc/default/cis-hardening
|
|
fi
|
|
if [ -z "$CIS_LIB_DIR" ]; then
|
|
echo "There is no /etc/default/cis-hardening file nor cis-hardening directory in current environment."
|
|
echo "Cannot source CIS_LIB_DIR variable, aborting."
|
|
exit 128
|
|
fi
|
|
|
|
# Main function, will call the proper functions given the configuration (audit, enabled, disabled)
|
|
if [ -r "${CIS_LIB_DIR}"/main.sh ]; then
|
|
# shellcheck source=../../lib/main.sh
|
|
. "${CIS_LIB_DIR}"/main.sh
|
|
else
|
|
echo "Cannot find main.sh, have you correctly defined your root directory? Current value is $CIS_LIB_DIR in /etc/default/cis-hardening"
|
|
exit 128
|
|
fi
|