2019-02-14 18:10:46 +01:00
|
|
|
# run-shellcheck
|
|
|
|
test_audit() {
|
|
|
|
describe Running on blank host
|
2019-02-22 15:40:01 +01:00
|
|
|
register_test retvalshouldbe 1
|
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
|
|
|
|
|
2019-02-22 15:40:01 +01:00
|
|
|
describe Fix state
|
|
|
|
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
|
|
|
|
|
|
|
|
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
|
|
|
}
|