2019-01-25 14:16:47 +01:00
|
|
|
# run-shellcheck
|
2018-12-24 14:12:59 +01:00
|
|
|
test_audit() {
|
|
|
|
# Make all variable local to the function by using `local`
|
|
|
|
|
|
|
|
# Optional part, only here if you need to change the audit script's default configuration
|
|
|
|
describe Running void to generate the conf file that will later be edited
|
2019-01-25 14:16:47 +01:00
|
|
|
# shellcheck disable=2154
|
|
|
|
/opt/debian-cis/bin/hardening/"${script}".sh || true
|
2018-12-24 14:12:59 +01:00
|
|
|
# for instance
|
|
|
|
echo 'EXCEPTIONS="$EXCEPTIONS <some file to treat as exception>"' >> /opt/debian-cis/etc/conf.d/"${script}".cfg
|
|
|
|
|
|
|
|
# if your blank system is expected to be compliant
|
|
|
|
describe Running on blank host
|
|
|
|
register_test retvalshouldbe 0
|
|
|
|
register_test contain "<SAMPLE MESSAGE>"
|
|
|
|
run blank /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
|
|
|
|
|
|
|
# Proceed to operation that will end up to a non compliant system
|
|
|
|
describe Tests purposely failing
|
|
|
|
register_test retvalshouldbe 1
|
|
|
|
register_test contain "<SAMPLE TEXT SHOWING BAD CONFIG>"
|
|
|
|
register_test contain "$targetfile"
|
|
|
|
run noncompliant /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
|
|
|
|
|
|
|
describe Correcting situation
|
|
|
|
# if the audit script provides "apply" option, enable and run it
|
2019-02-21 18:07:21 +01:00
|
|
|
sed -i 's/audit/enabled/' /opt/debian-cis/etc/conf.d/"${script}".cfg
|
2018-12-24 14:12:59 +01:00
|
|
|
/opt/debian-cis/bin/hardening/"${script}".sh || true
|
|
|
|
# otherwise perform action that will make system compliant again
|
|
|
|
|
|
|
|
# Finally assess that your corrective actions end up with a compliant system
|
|
|
|
describe Checking resolved state
|
|
|
|
register_test retvalshouldbe 0
|
|
|
|
register_test contain "<SAMPLE MESSAGE>"
|
|
|
|
run resolved /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
|
|
|
}
|
|
|
|
|