feat: add debian12 scripts

- iptables_loopback.sh 			-> 4.3.2.2
- iptables_rules_them_all.sh 		-> 4.3.2.4
- iptables_outbound_established.sh 	-> 4.3.2.3
- ip6tables_loopback.sh			-> 4.3.3.2
- ip6tables_outbound_established.sh	-> 4.3.3.3
- ip6tables_rules_them_all.sh		-> 4.3.3.4
- ip6tables_default_deny_policy.sh 	-> 4.3.3.1
This commit is contained in:
damien cavagnini
2025-08-05 16:23:52 +02:00
parent 9bd170438c
commit 1203cc93a3
17 changed files with 838 additions and 19 deletions

View File

@@ -0,0 +1,96 @@
#!/bin/bash
# run-shellcheck
#
# CIS Debian Hardening
#
#
# Ensure ip6tables default deny firewall policy (Manual)
#
set -e # One error, it's over
set -u # One variable unset, it's over
# shellcheck disable=2034
HARDENING_LEVEL=2
# shellcheck disable=2034
DESCRIPTION="Ensure ip6tables default deny firewall policy"
# This function will be called if the script status is on enabled / audit mode
audit() {
INPUT_CHAIN_DROP=1
OUTPUT_CHAIN_DROP=1
FORWARD_CHAIN_DROP=1
local input_default=""
local output_default=""
local forward_default=""
input_default=$($SUDO_CMD ip6tables -S INPUT | awk '/^-P/ {print $3}')
output_default=$($SUDO_CMD ip6tables -S OUTPUT | awk '/^-P/ {print $3}')
forward_default=$($SUDO_CMD ip6tables -S FORWARD | awk '/^-P/ {print $3}')
if [ "$input_default" != "DROP" ]; then
crit "ip6tables 'INPUT' chain does not have 'DROP' has default policy"
else
ok "ip6tables 'input' chain has 'DROP' has default policy"
INPUT_CHAIN_DROP=0
fi
if [ "$output_default" != "DROP" ]; then
crit "ip6tables 'OUTPUT' chain does not have 'DROP' has default policy"
else
ok "ip6tables 'OUTPUT' chain has 'DROP' has default policy"
OUTPUT_CHAIN_DROP=0
fi
if [ "$forward_default" != "DROP" ]; then
crit "ip6tables 'FORWARD' chain does not have 'DROP' has default policy"
else
ok "ip6tables 'FORWARD' chain has 'DROP' has default policy"
FORWARD_CHAIN_DROP=0
fi
}
# This function will be called if the script status is on enabled mode
apply() {
if [ "$INPUT_CHAIN_DROP" -ne 0 ]; then
info "Please review your ip6tables default 'INPUT' policy, we can't change it bindly"
fi
if [ "$OUTPUT_CHAIN_DROP" -ne 0 ]; then
info "Please review your ip6tables default 'OUTPUT' policy, we can't change it bindly"
fi
if [ "$FORWARD_CHAIN_DROP" -ne 0 ]; then
info "Please review your ip6tables default 'FORWARD' policy, we can't change it bindly"
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

View File

@@ -0,0 +1,113 @@
#!/bin/bash
# run-shellcheck
#
# CIS Debian Hardening
#
#
# Ensure ip6tables loopback traffic is configured (Automated)
#
set -e # One error, it's over
set -u # One variable unset, it's over
# shellcheck disable=2034
HARDENING_LEVEL=2
# shellcheck disable=2034
DESCRIPTION="Ensure ip6tables loopback traffic is configured"
PACKAGE="iptables"
# This function will be called if the script status is on enabled / audit mode
audit() {
is_pkg_installed "$PACKAGE"
if [ "$FNRET" -ne 0 ]; then
crit "$PACKAGE is not installed"
return
fi
is_ipv6_enabled
if [ "$FNRET" -ne 0 ]; then
ok "ipv6 is not enabled"
return
fi
IPTABLES_LOOPBACK_INPUT=1
IPTABLES_LOOPBACK_OUTPUT=1
IPTABLES_LOOPBACK_DENY=1
local input_rules
local output_rules
input_rules=$($SUDO_CMD ip6tables -S INPUT 2>/dev/null)
output_rules=$($SUDO_CMD ip6tables -S OUTPUT 2>/dev/null)
# the '.*' below is in case of comments
# shellcheck disable=2086
if grep "\-A INPUT -i lo.*-j ACCEPT" <<<$input_rules >/dev/null; then
ok "loopback is configured in ip6tables input rules"
IPTABLES_LOOPBACK_INPUT=0
else
crit "loopback is not configured in ip6tables input rules"
fi
# shellcheck disable=2086
if grep "\-A INPUT -s ::1 .*-j DROP" <<<$input_rules >/dev/null; then
ok "::1 is dropped in ip6tables input rules"
IPTABLES_LOOPBACK_DENY=0
else
crit "::1 is not dropped in ip6tables input rules"
fi
# shellcheck disable=2086
if grep "\-A OUTPUT -o lo.*-j ACCEPT" <<<$output_rules >/dev/null; then
ok "loopback is configured in ip6tables output rules"
IPTABLES_LOOPBACK_OUTPUT=0
else
crit "loopback is not configured in ip6tables output rules"
fi
}
# This function will be called if the script status is on enabled mode
apply() {
if [ "$IPTABLES_LOOPBACK_INPUT" -ne 0 ]; then
info "update ip6tables rules to allow loopback input"
ip6tables -A INPUT -i lo -j ACCEPT
fi
if [ "$IPTABLES_LOOPBACK_OUTPUT" -ne 0 ]; then
info "update ip6tables rules to allow loopback" output
ip6tables -A OUTPUT -o lo -j ACCEPT
fi
if [ "$IPTABLES_LOOPBACK_DENY" -ne 0 ]; then
info "update ip6tables rules to drop ::1 input"
ip6tables -A INPUT -s ::1 -j DROP
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

View File

@@ -0,0 +1,92 @@
#!/bin/bash
# run-shellcheck
#
# CIS Debian Hardening
#
#
# Ensure ip6tables outbound and established connections are configured (Manual)
#
set -e # One error, it's over
set -u # One variable unset, it's over
# shellcheck disable=2034
HARDENING_LEVEL=2
# shellcheck disable=2034
DESCRIPTION="Ensure ip6tables outbound and established connections are configured"
PACKAGE="iptables"
# This function will be called if the script status is on enabled / audit mode
audit() {
is_pkg_installed "$PACKAGE"
if [ "$FNRET" -ne 0 ]; then
crit "$PACKAGE is not installed"
return
fi
is_ipv6_enabled
if [ "$FNRET" -ne 0 ]; then
ok "ipv6 is not enabled"
return
fi
INPUT_ESTABLISHED=1
OUTPUT_ESTABLISHED=1
local output_established_rules
if $SUDO_CMD ip6tables -S INPUT | grep ESTABLISHED >/dev/null 2>&1; then
INPUT_ESTABLISHED=0
ok "INPUT ESTABLISHED connections are allowed"
else
crit "INPUT ESTABLISHED connections are not allowed"
fi
if $SUDO_CMD ip6tables -S OUTPUT | grep state >/dev/null 2>&1; then
output_established_rules=$($SUDO_CMD ip6tables -S OUTPUT | grep state)
# shellcheck disable=2086
if grep ESTABLISHED <<<$output_established_rules >/dev/null && grep NEW <<<$output_established_rules >/dev/null; then
OUTPUT_ESTABLISHED=0
ok "OUTPUT NEW and ESTABLISHED connections are allowed"
else
crit "OUTPUT NEW and ESTABLISHED connections are not allowed"
fi
else
crit "OUTPUT NEW and ESTABLISHED connections are not allowed"
fi
}
# This function will be called if the script status is on enabled mode
apply() {
if [ "$INPUT_ESTABLISHED" -ne 0 ] || [ "$OUTPUT_ESTABLISHED" -ne 0 ]; then
info "Please review manually your outbound and established connection, and update them accordingly to your site policies"
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

View File

@@ -0,0 +1,107 @@
#!/bin/bash
# run-shellcheck
#
# CIS Debian Hardening
#
#
# Ensure ip6tables firewall rules exist for all open ports (Manual)
#
set -e # One error, it's over
set -u # One variable unset, it's over
# shellcheck disable=2034
HARDENING_LEVEL=2
# shellcheck disable=2034
DESCRIPTION="Ensure ip6tables firewall rules exist for all open ports"
PACKAGE="iptables"
# we are going to
# - list listening ports
# - list ip6tables rules using dport
# - compare both
# This function will be called if the script status is on enabled / audit mode
audit() {
is_pkg_installed "$PACKAGE"
if [ "$FNRET" -ne 0 ]; then
crit "$PACKAGE is not installed"
return
fi
is_ipv6_enabled
if [ "$FNRET" -ne 0 ]; then
ok "ipv6 is not enabled"
return
fi
IPTABLES_IS_VALID=0
local iptables_ports_rules=""
local listening_ports
# we may have configured some custom chains in INPUT, that need to be checked too.
local custom_chains=""
local builtin_targets="ACCEPT DROP QUEUE RETURN"
for target in $($SUDO_CMD ip6tables -L INPUT | awk '{print $1}' | sed '1,2d'); do
if ! grep "$target" <<<"$builtin_targets" >/dev/null; then
custom_chains="$custom_chains $target"
fi
done
for chain in INPUT $custom_chains; do
# number of fields is not fixed, there may be some comments before and after
# ex:
# udp spt:68 dpt:67 /* DHCP Request */
# /* ssh connection */ tcp dpt:22
iptables_ports_rules="$iptables_ports_rules $($SUDO_CMD ip6tables -nL "$chain" | grep 'dpt:' | sed 's/^.*dpt://g' | awk '{print $1}' | sort -u)"
done
listening_ports=$($SUDO_CMD ss -tuln | awk '($5!~/%lo:/ && $5!~/127.0.0.1:/ && $5!~/\[?::1\]?:/) {split($5, a, ":"); print a[2]}' | sort -u)
for port in $listening_ports; do
if ! grep "$port" <<<"$iptables_ports_rules" >/dev/null; then
crit "$port does not have an ip6tables rule"
IPTABLES_IS_VALID=1
fi
done
if [ "$IPTABLES_IS_VALID" -eq 0 ]; then
ok "all listening ports have a corresponding rule in ufw"
fi
}
# This function will be called if the script status is on enabled mode
apply() {
if [ "$IPTABLES_IS_VALID" -ne 0 ]; then
# Debian 12 CIS marks this script as "Automated", but we wont do it
# How can we know if a rule should be allowed or denied ? From everywhere ? A specific range ?
warn "Please review the ip6tables rules and update them accordingly. We wont do it in an automated way, as we don't know if it should be allowed or denied"
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

View File

@@ -0,0 +1,107 @@
#!/bin/bash
# run-shellcheck
#
# CIS Debian Hardening
#
#
# Ensure iptables loopback traffic is configured (Automated)
#
set -e # One error, it's over
set -u # One variable unset, it's over
# shellcheck disable=2034
HARDENING_LEVEL=2
# shellcheck disable=2034
DESCRIPTION="Ensure iptables loopback traffic is configured"
PACKAGE="iptables"
# This function will be called if the script status is on enabled / audit mode
audit() {
is_pkg_installed "$PACKAGE"
if [ "$FNRET" -ne 0 ]; then
crit "$PACKAGE is not installed"
return
fi
IPTABLES_LOOPBACK_INPUT=1
IPTABLES_LOOPBACK_OUTPUT=1
IPTABLES_LOOPBACK_DENY=1
local input_rules
local output_rules
input_rules=$($SUDO_CMD iptables -S INPUT 2>/dev/null)
output_rules=$($SUDO_CMD iptables -S OUTPUT 2>/dev/null)
# the '.*' below is in case of comments
# shellcheck disable=2086
if grep "\-A INPUT -i lo.*-j ACCEPT" <<<$input_rules >/dev/null; then
ok "loopback is configured in iptables input rules"
IPTABLES_LOOPBACK_INPUT=0
else
crit "loopback is not configured in iptables input rules"
fi
# shellcheck disable=2086
if grep "\-A INPUT -s 127.0.0.0/8.*-j DROP" <<<$input_rules >/dev/null; then
ok "127.0.0.0/8 is dropped in iptables input rules"
IPTABLES_LOOPBACK_DENY=0
else
crit "127.0.0.0/8 is not dropped in iptables input rules"
fi
# shellcheck disable=2086
if grep "\-A OUTPUT -o lo.*-j ACCEPT" <<<$output_rules >/dev/null; then
ok "loopback is configured in iptables output rules"
IPTABLES_LOOPBACK_OUTPUT=0
else
crit "loopback is not configured in iptables output rules"
fi
}
# This function will be called if the script status is on enabled mode
apply() {
if [ "$IPTABLES_LOOPBACK_INPUT" -ne 0 ]; then
info "update iptables rules to allow loopback input"
iptables -A INPUT -i lo -j ACCEPT
fi
if [ "$IPTABLES_LOOPBACK_OUTPUT" -ne 0 ]; then
info "update iptables rules to allow loopback" output
iptables -A OUTPUT -o lo -j ACCEPT
fi
if [ "$IPTABLES_LOOPBACK_DENY" -ne 0 ]; then
info "update iptables rules to drop 127.0.0.0/8 input"
iptables -A INPUT -s 127.0.0.0/8 -j DROP
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

View File

@@ -0,0 +1,86 @@
#!/bin/bash
# run-shellcheck
#
# CIS Debian Hardening
#
#
# Ensure iptables outbound and established connections are configured (Manual)
#
set -e # One error, it's over
set -u # One variable unset, it's over
# shellcheck disable=2034
HARDENING_LEVEL=2
# shellcheck disable=2034
DESCRIPTION="Ensure iptables outbound and established connections are configured"
PACKAGE="iptables"
# This function will be called if the script status is on enabled / audit mode
audit() {
is_pkg_installed "$PACKAGE"
if [ "$FNRET" -ne 0 ]; then
crit "$PACKAGE is not installed"
return
fi
INPUT_ESTABLISHED=1
OUTPUT_ESTABLISHED=1
local output_established_rules
if $SUDO_CMD iptables -S INPUT | grep ESTABLISHED >/dev/null 2>&1; then
INPUT_ESTABLISHED=0
ok "INPUT ESTABLISHED connections are allowed"
else
crit "INPUT ESTABLISHED connections are not allowed"
fi
if $SUDO_CMD iptables -S OUTPUT | grep state >/dev/null 2>&1; then
output_established_rules=$($SUDO_CMD iptables -S OUTPUT | grep state)
# shellcheck disable=2086
if grep ESTABLISHED <<<$output_established_rules >/dev/null && grep NEW <<<$output_established_rules >/dev/null; then
OUTPUT_ESTABLISHED=0
ok "OUTPUT NEW and ESTABLISHED connections are allowed"
else
crit "OUTPUT NEW and ESTABLISHED connections are not allowed"
fi
else
crit "OUTPUT NEW and ESTABLISHED connections are not allowed"
fi
}
# This function will be called if the script status is on enabled mode
apply() {
if [ "$INPUT_ESTABLISHED" -ne 0 ] || [ "$OUTPUT_ESTABLISHED" -ne 0 ]; then
info "Please review manually your outbound and established connection, and update them accordingly to your site policies"
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

View File

@@ -0,0 +1,101 @@
#!/bin/bash
# run-shellcheck
#
# CIS Debian Hardening
#
#
# Ensure iptables firewall rules exist for all open ports (Manual)
#
set -e # One error, it's over
set -u # One variable unset, it's over
# shellcheck disable=2034
HARDENING_LEVEL=2
# shellcheck disable=2034
DESCRIPTION="Ensure iptables firewall rules exist for all open ports"
PACKAGE="iptables"
# we are going to
# - list listening ports
# - list iptables rules using dport
# - compare both
# This function will be called if the script status is on enabled / audit mode
audit() {
is_pkg_installed "$PACKAGE"
if [ "$FNRET" -ne 0 ]; then
crit "$PACKAGE is not installed"
return
fi
IPTABLES_IS_VALID=0
local iptables_ports_rules=""
local listening_ports
# we may have configured some custom chains in INPUT, that need to be checked too.
local custom_chains=""
local builtin_targets="ACCEPT DROP QUEUE RETURN"
for target in $($SUDO_CMD iptables -L INPUT | awk '{print $1}' | sed '1,2d'); do
if ! grep "$target" <<<"$builtin_targets" >/dev/null; then
custom_chains="$custom_chains $target"
fi
done
for chain in INPUT $custom_chains; do
# number of fields is not fixed, there may be some comments before and after
# ex:
# udp spt:68 dpt:67 /* DHCP Request */
# /* ssh connection */ tcp dpt:22
iptables_ports_rules="$iptables_ports_rules $($SUDO_CMD iptables -nL "$chain" | grep 'dpt:' | sed 's/^.*dpt://g' | awk '{print $1}' | sort -u)"
done
listening_ports=$($SUDO_CMD ss -tuln | awk '($5!~/%lo:/ && $5!~/127.0.0.1:/ && $5!~/\[?::1\]?:/) {split($5, a, ":"); print a[2]}' | sort -u)
for port in $listening_ports; do
if ! grep "$port" <<<"$iptables_ports_rules" >/dev/null; then
crit "$port does not have an iptables rule"
IPTABLES_IS_VALID=1
fi
done
if [ "$IPTABLES_IS_VALID" -eq 0 ]; then
ok "all listening ports have a corresponding rule in ufw"
fi
}
# This function will be called if the script status is on enabled mode
apply() {
if [ "$IPTABLES_IS_VALID" -ne 0 ]; then
# Debian 12 CIS marks this script as "Automated", but we wont do it
# How can we know if a rule should be allowed or denied ? From everywhere ? A specific range ?
warn "Please review the iptables rules and update them accordingly. We wont do it in an automated way, as we don't know if it should be allowed or denied"
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

View File

@@ -0,0 +1,5 @@
# shellcheck shell=bash
# run-shellcheck
test_audit() {
describe "This can't be tested without a privilieged container"
}

View File

@@ -0,0 +1,5 @@
# shellcheck shell=bash
# run-shellcheck
test_audit() {
describe "This can't be tested without a privilieged container"
}

View File

@@ -0,0 +1,31 @@
# shellcheck shell=bash
# run-shellcheck
test_audit() {
describe Prepare test
apt install -y iptables
tests_is_ipv6_enabled
tests_get_debian_major_version
if [ "$CURRENT_IPV6_ENABLED" -eq 0 ] && [ "$DEB_MAJ_VER" -gt 11 ]; then
# not much to test here, unless working on a privileged container
describe Running on blank host
register_test retvalshouldbe 1
# shellcheck disable=2154
run blank "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
else
# not much to test here, unless working on a privileged container
describe Running on blank host
register_test retvalshouldbe 0
# shellcheck disable=2154
run blank "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
fi
describe clean test
apt remove -y iptables
}

View File

@@ -0,0 +1,35 @@
# shellcheck shell=bash
# run-shellcheck
test_audit() {
apt install -y iptables netcat-traditional
tests_is_ipv6_enabled
tests_get_debian_major_version
if [ "$CURRENT_IPV6_ENABLED" -eq 0 ] && [ "$DEB_MAJ_VER" -gt 11 ]; then
describe Prepare test
# shellcheck disable=2216
timeout 5s nc -lp 404 | true &
# not much to test here, unless working on a privileged container
describe Running failed test
register_test retvalshouldbe 1
# shellcheck disable=2154
run failed "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
describe correcting situation
# just wait for timeout to expire
sleep 5
fi
describe Running success
register_test retvalshouldbe 0
# shellcheck disable=2154
run success "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
describe clean test
apt remove -y iptables netcat-traditional
}

View File

@@ -0,0 +1,22 @@
# shellcheck shell=bash
# run-shellcheck
test_audit() {
tests_get_debian_major_version
if [ "$DEB_MAJ_VER" -gt 11 ]; then
describe Prepare test
apt install -y iptables
# not much to test here, unless working on a privileged container
describe Running on blank host
register_test retvalshouldbe 1
# shellcheck disable=2154
run blank "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
describe clean test
apt remove -y iptables
fi
}

View File

@@ -0,0 +1,5 @@
# shellcheck shell=bash
# run-shellcheck
test_audit() {
describe "This can't be tested without a privilieged container"
}

View File

@@ -0,0 +1,5 @@
# shellcheck shell=bash
# run-shellcheck
test_audit() {
describe "This can't be tested without a privilieged container"
}

View File

@@ -1,28 +1,10 @@
# shellcheck shell=bash
# run-shellcheck
is_ipv6_enabled() {
CURRENT_IPV6_ENABLED=1
if sysctl net.ipv6 >/dev/null 2>&1; then
for iface in /proc/sys/net/ipv6/conf/*; do
ifname=$(basename "$iface")
if [ "$ifname" != "default" ] && [ "$ifname" != "all" ]; then
value=$(cat "$iface"/disable_ipv6)
# if only one interface has ipv6, this is enough to consider it enabled
if [ "$value" -eq 0 ]; then
CURRENT_IPV6_ENABLED=0
break
fi
fi
done
fi
}
test_audit() {
# shellcheck disable=2154
"${CIS_CHECKS_DIR}/${script}.sh" --create-config-files-only
is_ipv6_enabled
tests_is_ipv6_enabled
if [ "$CURRENT_IPV6_ENABLED" -eq 0 ]; then
describe prepare failing test
# shellcheck disable=2154

View File

@@ -153,6 +153,7 @@ if [ ! -f "$(dirname "$0")"/lib.sh ]; then
fi
# shellcheck source=../tests/lib.sh
. "$(dirname "$0")"/lib.sh
. "$(dirname "$0")"/utils.sh
###################
# Execution start #

26
tests/utils.sh Normal file
View File

@@ -0,0 +1,26 @@
tests_is_ipv6_enabled() {
CURRENT_IPV6_ENABLED=1
if sysctl net.ipv6 >/dev/null 2>&1; then
for iface in /proc/sys/net/ipv6/conf/*; do
ifname=$(basename "$iface")
if [ "$ifname" != "default" ] && [ "$ifname" != "all" ]; then
value=$(cat "$iface"/disable_ipv6)
# if only one interface has ipv6, this is enough to consider it enabled
if [ "$value" -eq 0 ]; then
CURRENT_IPV6_ENABLED=0
break
fi
fi
done
fi
}
tests_get_debian_major_version() {
DEB_MAJ_VER=""
if [ -e /etc/debian_version ]; then
DEB_MAJ_VER=$(cut -d '.' -f1 /etc/debian_version)
else
# shellcheck disable=2034
DEB_MAJ_VER=$(lsb_release -r | cut -f2 | cut -d '.' -f 1)
fi
}