2020-11-27 09:22:47 +01:00
|
|
|
# shellcheck shell=bash
|
2019-02-14 18:10:46 +01:00
|
|
|
# run-shellcheck
|
|
|
|
test_audit() {
|
|
|
|
describe Running on blank host
|
2020-10-29 11:18:31 +01:00
|
|
|
register_test retvalshouldbe 0
|
2019-02-26 15:16:06 +01:00
|
|
|
dismiss_count_for_test
|
2019-02-14 18:10:46 +01:00
|
|
|
# shellcheck disable=2154
|
|
|
|
run blank /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
2020-12-04 14:08:01 +01:00
|
|
|
|
2020-10-29 11:18:31 +01:00
|
|
|
describe Correcting situation
|
|
|
|
# `apply` performs a service reload after each change in the config file
|
|
|
|
# the service needs to be started for the reload to succeed
|
|
|
|
service ssh start
|
|
|
|
# if the audit script provides "apply" option, enable and run it
|
2019-02-22 15:40:01 +01:00
|
|
|
sed -i 's/audit/enabled/' /opt/debian-cis/etc/conf.d/"${script}".cfg
|
|
|
|
/opt/debian-cis/bin/hardening/"${script}".sh || true
|
|
|
|
|
|
|
|
describe Checking resolved state
|
|
|
|
register_test retvalshouldbe 0
|
|
|
|
run resolved /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
|
|
|
|
2020-12-04 14:08:01 +01:00
|
|
|
echo "OPTIONS='LogLevel=DEBUG'" >>/opt/debian-cis/etc/conf.d/"${script}".cfg
|
2019-02-25 15:16:02 +01:00
|
|
|
sed -i 's/LogLevel VERBOSE/LogLevel DEBUG/' /etc/ssh/sshd_config
|
2019-02-22 15:40:01 +01:00
|
|
|
|
|
|
|
describe Checking custom conf
|
|
|
|
register_test retvalshouldbe 0
|
|
|
|
run customconf /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
2019-02-14 18:10:46 +01:00
|
|
|
}
|