debian-cis/tests/hardening/6.2.9_users_homedir_ownership.sh

29 lines
955 B
Bash
Raw Normal View History

# shellcheck shell=bash
# run-shellcheck
test_audit() {
describe Running on blank host
register_test retvalshouldbe 0
# shellcheck disable=2154
run blank /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
2020-11-05 14:24:57 +01:00
local test_user="testhomeuser"
2020-11-05 14:24:57 +01:00
describe Test purposely failing
useradd -m "$test_user"
chown root:root /home/"$test_user"
register_test retvalshouldbe 1
2020-11-05 14:24:57 +01:00
register_test contain "[ KO ] The home directory (/home/$test_user) of user testhomeuser is owned by root"
2020-12-04 14:08:01 +01:00
run noncompliant /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
2020-11-05 14:24:57 +01:00
describe correcting situation
echo "EXCEPTIONS=\"/home/$test_user:$test_user:root\"" >/opt/debian-cis/etc/conf.d/"${script}".cfg
2020-11-05 14:24:57 +01:00
describe Checking resolved state
register_test retvalshouldbe 0
2020-11-05 14:24:57 +01:00
run resolved /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
# Cleanup
2020-11-05 14:24:57 +01:00
rm -rf "/home/${test_user:?}"
userdel -r "$test_user"
}