2020-11-27 09:22:47 +01:00
|
|
|
# shellcheck shell=bash
|
2019-01-24 11:11:08 +01:00
|
|
|
# run-shellcheck
|
2018-12-24 14:12:59 +01:00
|
|
|
test_audit() {
|
|
|
|
describe Running void to generate the conf file that will later be edited
|
|
|
|
# shellcheck disable=2154
|
2023-09-25 14:24:01 +02:00
|
|
|
"${CIS_CHECKS_DIR}/${script}.sh" || true
|
2019-01-24 11:11:08 +01:00
|
|
|
# shellcheck disable=2016
|
2023-09-25 14:24:01 +02:00
|
|
|
echo 'EXCEPTIONS="$EXCEPTIONS /usr/lib/dbus-1.0/dbus-daemon-launch-helper /usr/sbin/exim4 /bin/fusermount /usr/lib/eject/dmcrypt-get-device /usr/bin/pkexec /usr/lib/policykit-1/polkit-agent-helper-1"' >>"${CIS_CONF_DIR}/conf.d/${script}.cfg"
|
2018-12-24 14:12:59 +01:00
|
|
|
|
|
|
|
describe Running on blank host
|
|
|
|
register_test retvalshouldbe 0
|
2020-11-05 12:06:14 +01:00
|
|
|
dismiss_count_for_test
|
2023-09-25 14:24:01 +02:00
|
|
|
run blank "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
2018-12-24 14:12:59 +01:00
|
|
|
|
|
|
|
describe Tests purposely failing
|
|
|
|
local targetfile="/home/secaudit/suid_file"
|
2020-11-30 13:05:41 +01:00
|
|
|
touch "$targetfile"
|
|
|
|
chmod 4700 "$targetfile"
|
2018-12-24 14:12:59 +01:00
|
|
|
register_test retvalshouldbe 1
|
|
|
|
register_test contain "Some suid files are present"
|
|
|
|
register_test contain "$targetfile"
|
2023-09-25 14:24:01 +02:00
|
|
|
run noncompliant "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
2018-12-24 14:12:59 +01:00
|
|
|
|
2022-07-04 14:29:25 +02:00
|
|
|
describe Tests failing with find ignore flag
|
2023-09-25 14:24:01 +02:00
|
|
|
echo 'FIND_IGNORE_NOSUCHFILE_ERR=true' >>"${CIS_CONF_DIR}/conf.d/${script}.cfg"
|
2022-07-04 14:29:25 +02:00
|
|
|
register_test retvalshouldbe 1
|
|
|
|
register_test contain "Some suid files are present"
|
2023-09-25 14:24:01 +02:00
|
|
|
run noncompliant "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
2022-07-04 14:29:25 +02:00
|
|
|
|
2018-12-24 14:12:59 +01:00
|
|
|
describe correcting situation
|
|
|
|
chmod 700 $targetfile
|
|
|
|
|
|
|
|
describe Checking resolved state
|
|
|
|
register_test retvalshouldbe 0
|
|
|
|
register_test contain "No unknown suid files found"
|
2023-09-25 14:24:01 +02:00
|
|
|
run resolved "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
2018-12-24 14:12:59 +01:00
|
|
|
}
|