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
|
|
|
|
register_test retvalshouldbe 0
|
|
|
|
dismiss_count_for_test
|
|
|
|
# shellcheck disable=2154
|
|
|
|
run blank /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
|
|
|
|
2020-10-27 11:24:40 +01:00
|
|
|
local test_group="testduplicategroup"
|
|
|
|
local dir="/etc/group"
|
|
|
|
|
2020-12-04 14:08:01 +01:00
|
|
|
describe Tests purposely failing
|
2020-11-30 13:05:41 +01:00
|
|
|
useradd "$test_group"
|
|
|
|
temp=$(tail -1 "$dir")
|
2020-12-04 14:08:01 +01:00
|
|
|
echo "$temp" >>"$dir"
|
2020-10-27 11:24:40 +01:00
|
|
|
register_test retvalshouldbe 1
|
|
|
|
register_test contain "Duplicate group"
|
|
|
|
run noncompliant /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
|
|
|
|
|
|
|
# cleanup
|
2020-11-30 13:05:41 +01:00
|
|
|
sed -i '$ d' "$dir"
|
|
|
|
userdel "$test_group"
|
2019-02-14 18:10:46 +01:00
|
|
|
}
|