debian-cis/tests/hardening/99.1.1.23_disable_usb_devices.sh

28 lines
846 B
Bash
Raw Normal View History

# shellcheck shell=bash
2019-02-15 16:56:54 +01:00
# run-shellcheck
test_audit() {
2020-10-27 16:00:02 +01:00
if [ -f "/.dockerenv" ]; then
skip "SKIPPED on docker"
else
mkdir /etc/udev/rules.d || true
chmod -R 700 /etc/udev
2019-02-15 16:56:54 +01:00
2020-10-27 16:00:02 +01:00
describe Running on blank host
register_test retvalshouldbe 0
dismiss_count_for_test
# shellcheck disable=2154
run blank /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
2019-02-15 16:56:54 +01:00
2020-12-04 14:08:01 +01:00
echo 'ACTION=="add", SUBSYSTEMS=="usb", TEST=="authorized_default", ATTR{authorized_default}="0"' >/etc/udev/rules.d/10-CIS_99.2_usb_devices.sh
2019-02-15 16:56:54 +01:00
2020-10-27 16:00:02 +01:00
describe compliant
register_test retvalshouldbe 0
run compliant /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
2019-02-15 16:56:54 +01:00
2020-10-27 16:00:02 +01:00
# TODO fill comprehensive tests
2019-02-15 16:56:54 +01:00
2020-10-27 16:00:02 +01:00
# Cleanup
2020-12-04 14:08:01 +01:00
rm /etc/udev/rules.d/10-CIS_99.2_usb_devices.sh
2020-10-27 16:00:02 +01:00
fi
2019-02-15 16:56:54 +01:00
}