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
|
2023-09-25 14:24:01 +02:00
|
|
|
run blank "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
2019-02-14 18:10:46 +01:00
|
|
|
|
2020-10-27 09:17:57 +01:00
|
|
|
local dir="/test"
|
|
|
|
local test_user="userrootpathtest"
|
|
|
|
|
|
|
|
describe Tests purposely failing
|
|
|
|
register_test retvalshouldbe 1
|
|
|
|
register_test contain "Empty Directory in PATH (::)"
|
2023-09-25 14:24:01 +02:00
|
|
|
run noncompliant path="$PATH::" "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
2020-10-27 09:17:57 +01:00
|
|
|
|
|
|
|
describe Tests purposely failing
|
|
|
|
register_test retvalshouldbe 1
|
|
|
|
register_test contain "Trailing : in PATH"
|
2023-09-25 14:24:01 +02:00
|
|
|
run noncompliant path="$PATH:" "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
2020-10-27 09:17:57 +01:00
|
|
|
|
|
|
|
describe Tests purposely failing
|
|
|
|
register_test retvalshouldbe 1
|
|
|
|
register_test contain "PATH contains ."
|
2023-09-25 14:24:01 +02:00
|
|
|
run noncompliant path="$PATH:." "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
2020-10-27 09:17:57 +01:00
|
|
|
|
|
|
|
describe Tests purposely failing
|
2020-12-04 14:08:01 +01:00
|
|
|
mkdir -m 770 "$dir"
|
2020-10-27 09:17:57 +01:00
|
|
|
register_test retvalshouldbe 1
|
|
|
|
register_test contain "Group Write permission set on directory $dir"
|
2023-09-25 14:24:01 +02:00
|
|
|
run noncompliant path="$PATH:$dir" "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
2020-10-27 09:17:57 +01:00
|
|
|
# clean
|
2020-11-30 13:05:41 +01:00
|
|
|
rmdir "$dir"
|
2020-10-27 09:17:57 +01:00
|
|
|
|
|
|
|
describe Tests purposely failing
|
2020-11-30 13:05:41 +01:00
|
|
|
mkdir -m 707 "$dir"
|
2020-10-27 09:17:57 +01:00
|
|
|
register_test retvalshouldbe 1
|
|
|
|
register_test contain "Other Write permission set on directory $dir"
|
2023-09-25 14:24:01 +02:00
|
|
|
run noncompliant path="$PATH:$dir" "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
2020-10-27 09:17:57 +01:00
|
|
|
# clean
|
2020-11-30 13:05:41 +01:00
|
|
|
rmdir "$dir"
|
2020-10-27 09:17:57 +01:00
|
|
|
|
|
|
|
describe Tests purposely failing
|
2020-11-30 13:05:41 +01:00
|
|
|
useradd "$test_user"
|
|
|
|
mkdir -m 700 "$dir"
|
|
|
|
chown "$test_user":"$test_user" "$dir"
|
2020-10-27 09:17:57 +01:00
|
|
|
register_test retvalshouldbe 1
|
|
|
|
register_test contain "$dir is not owned by root"
|
2023-09-25 14:24:01 +02:00
|
|
|
run noncompliant path="$PATH:$dir" "${CIS_CHECKS_DIR}/${script}.sh" --audit-all
|
2020-10-27 09:17:57 +01:00
|
|
|
# clean
|
2020-11-30 13:05:41 +01:00
|
|
|
rmdir "$dir"
|
|
|
|
userdel "$test_user"
|
2020-10-27 09:17:57 +01:00
|
|
|
|
2019-02-14 18:10:46 +01:00
|
|
|
}
|