2017-12-20 15:14:30 +01:00
|
|
|
#!/bin/bash
|
|
|
|
|
2020-11-23 17:10:37 +01:00
|
|
|
# run-shellcheck
|
2017-12-20 15:14:30 +01:00
|
|
|
#
|
|
|
|
# OVH Security audit
|
|
|
|
#
|
|
|
|
|
|
|
|
#
|
2020-12-22 16:36:35 +01:00
|
|
|
# 99.5.2.4 Check <from> field in ssh authorized keys files for users with login shell, and bastions IP if available.
|
2017-12-20 15:14:30 +01:00
|
|
|
#
|
|
|
|
|
|
|
|
set -e # One error, it is over
|
|
|
|
set -u # One variable unset, it is over
|
|
|
|
|
|
|
|
# shellcheck disable=2034
|
|
|
|
DESCRIPTION="Check <from> field in ssh authorized keys files for users with login shell, and allowed IP if available."
|
|
|
|
|
|
|
|
# Regex looking for empty, hash starting lines, or 'from="127.127.127,127.127.127" ssh'
|
|
|
|
# shellcheck disable=2089
|
2019-03-15 18:17:48 +01:00
|
|
|
REGEX_FROM_IP="from=(?:'|\")(,?(\d{1,3}(\.\d{1,3}){3}))+(?:'|\")"
|
|
|
|
REGEX_OK_LINES="(^(#|$)|($REGEX_FROM_IP))"
|
2017-12-20 15:14:30 +01:00
|
|
|
AUTHKEYFILE_PATTERN=""
|
|
|
|
AUTHKEYFILE_PATTERN_DEFAULT=".ssh/authorized_keys .ssh/authorized_keys2"
|
|
|
|
|
|
|
|
ALLOWED_IPS=""
|
2019-03-05 10:49:45 +01:00
|
|
|
USERS_TO_CHECK=""
|
2020-11-05 15:05:12 +01:00
|
|
|
EXCEPTION_USER=""
|
2017-12-20 15:14:30 +01:00
|
|
|
|
|
|
|
ALLOWED_NOLOGIN_SHELLS="/bin/false /usr/sbin/nologin"
|
|
|
|
|
|
|
|
# Check functions
|
|
|
|
check_ip() {
|
|
|
|
file=$1
|
|
|
|
if [ -z "$ALLOWED_IPS" ]; then
|
2020-12-04 14:08:01 +01:00
|
|
|
warn "No allowed IPs to treat"
|
|
|
|
return
|
2017-12-20 15:14:30 +01:00
|
|
|
fi
|
2020-12-04 14:08:01 +01:00
|
|
|
for line in $($SUDO_CMD grep -noP "$REGEX_FROM_IP" "$file" | tr -s " " | sed 's/ /_/g'); do
|
2017-12-20 15:14:30 +01:00
|
|
|
linum=$(echo "$line" | cut -d ':' -f 1)
|
|
|
|
ips=$(echo "$line" | cut -d '"' -f 2 | tr ',' ' ')
|
|
|
|
ok_ips_allowed=""
|
|
|
|
bad_ips=""
|
|
|
|
for ip in $ips; do
|
2020-12-10 08:34:57 +01:00
|
|
|
# shellcheck disable=SC2001
|
2020-12-04 14:08:01 +01:00
|
|
|
ip_escaped=$(sed 's/\./\\./g' <<<"$ip")
|
2020-12-07 17:11:32 +01:00
|
|
|
if grep -qw "$ip_escaped" <<<"$ALLOWED_IPS"; then
|
2017-12-20 15:14:30 +01:00
|
|
|
debug "Line $linum of $file allows access from exused IP (${ip})."
|
|
|
|
ok_ips_allowed+="$ip "
|
|
|
|
else
|
|
|
|
debug "Line $linum of $file allows access from ip ($ip) that is not allowed."
|
|
|
|
bad_ips+="$ip "
|
|
|
|
fi
|
|
|
|
done
|
2020-12-10 08:34:57 +01:00
|
|
|
# shellcheck disable=SC2001
|
2020-12-04 14:08:01 +01:00
|
|
|
ok_ips=$(sed 's/ $//' <<<"${ok_ips_allowed}")
|
2020-12-10 08:34:57 +01:00
|
|
|
# shellcheck disable=SC2001
|
2020-12-04 14:08:01 +01:00
|
|
|
bad_ips=$(sed 's/ $//' <<<"${bad_ips}")
|
2020-12-10 09:50:33 +01:00
|
|
|
if [[ -z "$bad_ips" ]]; then
|
|
|
|
if [[ -n "$ok_ips" ]]; then
|
2017-12-20 15:14:30 +01:00
|
|
|
ok "Line $linum of $file allows ssh access only from allowed IPs ($ok_ips)."
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
crit "Line $linum of $file allows ssh access from (${bad_ips}) that are not allowed."
|
2020-12-10 09:50:33 +01:00
|
|
|
if [[ -n "$ok_ips" ]]; then
|
2017-12-20 15:14:30 +01:00
|
|
|
ok "Line $linum of $file allows ssh access from at least allowed IPs ($ok_ips)."
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
check_file() {
|
|
|
|
file=$1
|
2020-12-04 14:08:01 +01:00
|
|
|
if $SUDO_CMD [ ! -e "$file" ]; then
|
|
|
|
debug "$file does not exist"
|
|
|
|
return
|
|
|
|
fi
|
2017-12-20 15:14:30 +01:00
|
|
|
if $SUDO_CMD [ -r "$file" ]; then
|
|
|
|
debug "Treating $file"
|
|
|
|
FOUND_AUTHKF=1
|
2020-12-04 14:08:01 +01:00
|
|
|
if $SUDO_CMD grep -vqP "$REGEX_OK_LINES" "${file}"; then
|
|
|
|
bad_lines="$($SUDO_CMD grep -vnP "$REGEX_OK_LINES" "${file}" | cut -d ':' -f 1 | tr '\n' ' ' | sed 's/ $//')"
|
2017-12-20 15:14:30 +01:00
|
|
|
crit "There are anywhere access keys in ${file} at lines (${bad_lines})."
|
|
|
|
else
|
|
|
|
ok "File ${file} is cleared from anywhere access keys."
|
|
|
|
check_ip "$file"
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
crit "Cannot read ${file} for ${user}."
|
|
|
|
fi
|
|
|
|
}
|
|
|
|
|
|
|
|
check_dir() {
|
|
|
|
directory=$1
|
|
|
|
if $SUDO_CMD [ ! -x "$directory" ]; then
|
|
|
|
crit "Cannot read ${directory}."
|
|
|
|
return
|
|
|
|
fi
|
|
|
|
for file in $AUTHKEYFILE_PATTERN; do
|
2020-12-07 17:11:32 +01:00
|
|
|
check_file "${directory}"/"${file}"
|
2017-12-20 15:14:30 +01:00
|
|
|
done
|
|
|
|
}
|
|
|
|
|
|
|
|
# This function will be called if the script status is on enabled / audit mode
|
2020-12-04 14:08:01 +01:00
|
|
|
audit() {
|
2017-12-20 15:14:30 +01:00
|
|
|
# Retrieve authorized_key file pattern from sshd_config
|
|
|
|
if $SUDO_CMD [ ! -r /etc/ssh/sshd_config ]; then
|
|
|
|
crit "/etc/ssh/sshd_config is not readable."
|
|
|
|
else
|
2020-12-04 14:08:01 +01:00
|
|
|
ret=$($SUDO_CMD grep -iP "^AuthorizedKeysFile" /etc/ssh/sshd_config || echo '#KO')
|
2017-12-20 15:14:30 +01:00
|
|
|
if [ "x$ret" = "x#KO" ]; then
|
|
|
|
debug "No AuthorizedKeysFile defined in sshd_config."
|
|
|
|
else
|
|
|
|
AUTHKEYFILE_PATTERN=$(echo "$ret" | sed 's/AuthorizedKeysFile//i' | sed 's#%h/##' | tr -s "[:space:]")
|
|
|
|
debug "Found pattern in sshdconfig : ${AUTHKEYFILE_PATTERN}."
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2020-12-04 14:08:01 +01:00
|
|
|
if [ -z "$AUTHKEYFILE_PATTERN" ]; then
|
2017-12-20 15:14:30 +01:00
|
|
|
AUTHKEYFILE_PATTERN=$AUTHKEYFILE_PATTERN_DEFAULT
|
|
|
|
debug "Set default pattern for authorized_keys file."
|
|
|
|
fi
|
|
|
|
|
2019-03-05 10:49:45 +01:00
|
|
|
if [ -z "$USERS_TO_CHECK" ]; then
|
|
|
|
USERS_TO_CHECK=$($SUDO_CMD cat /etc/passwd | cut -d ":" -f 1)
|
|
|
|
debug "Checking all users: $USERS_TO_CHECK"
|
|
|
|
else
|
|
|
|
debug "Checking only selected users: $USERS_TO_CHECK"
|
|
|
|
fi
|
|
|
|
|
|
|
|
for user in $USERS_TO_CHECK; do
|
2017-12-20 15:14:30 +01:00
|
|
|
# Checking if at least one AuthKeyFile has been found for this user
|
|
|
|
FOUND_AUTHKF=0
|
2020-12-04 14:08:01 +01:00
|
|
|
shell=$(getent passwd "$user" | cut -d ':' -f 7)
|
|
|
|
if grep -q "$shell" <<<"$ALLOWED_NOLOGIN_SHELLS"; then
|
2017-12-20 15:14:30 +01:00
|
|
|
continue
|
|
|
|
else
|
2020-12-04 14:08:01 +01:00
|
|
|
info "User $user has a valid shell ($shell)."
|
2020-11-05 15:05:12 +01:00
|
|
|
if [ "x$user" = "xroot" ] && [ "$user" != "$EXCEPTION_USER" ]; then
|
2017-12-20 15:14:30 +01:00
|
|
|
check_dir /root
|
|
|
|
continue
|
|
|
|
elif $SUDO_CMD [ ! -d /home/"$user" ]; then
|
|
|
|
info "User $user has no home directory."
|
|
|
|
continue
|
|
|
|
fi
|
|
|
|
check_dir /home/"${user}"
|
2020-12-10 09:50:33 +01:00
|
|
|
if [ "$FOUND_AUTHKF" = 0 ]; then
|
2017-12-20 15:14:30 +01:00
|
|
|
warn "$user has a valid shell but no authorized_keys file"
|
|
|
|
fi
|
|
|
|
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
|
|
|
:
|
|
|
|
}
|
|
|
|
|
|
|
|
create_config() {
|
|
|
|
cat <<EOF
|
2019-02-14 14:33:21 +01:00
|
|
|
status=audit
|
2017-12-20 15:14:30 +01:00
|
|
|
# Put authorized IPs you want to allow in "from" field of authorized_keys
|
|
|
|
ALLOWED_IPS=""
|
2019-03-05 10:49:45 +01:00
|
|
|
USERS_TO_CHECK=""
|
2020-11-05 15:05:12 +01:00
|
|
|
EXCEPTION_USER=""
|
2017-12-20 15:14:30 +01:00
|
|
|
EOF
|
|
|
|
}
|
|
|
|
|
|
|
|
# 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."
|
|
|
|
echo "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
|