mirror of
https://github.com/ovh/debian-cis.git
synced 2024-11-22 13:37:02 +01:00
9e6c9a0d8a
* IMP(5.2.23): accept lower value as valid * IMP(5.2.7): accept lower value as valid
39 lines
1.5 KiB
Bash
39 lines
1.5 KiB
Bash
# shellcheck shell=bash
|
|
# 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
|
|
|
|
echo "maxsessions 1" >>/etc/ssh/sshd_config
|
|
|
|
describe Running restrictive
|
|
register_test retvalshouldbe 0
|
|
register_test contain "[ OK ] 1 is lower than recommended 10"
|
|
run restrictive /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
|
|
|
# delete last line
|
|
sed -i '$ d' /etc/ssh/sshd_config
|
|
echo "maxsessions 15" >>/etc/ssh/sshd_config
|
|
|
|
describe Running too permissive
|
|
register_test retvalshouldbe 1
|
|
register_test contain "[ KO ] 15 is higher than recommended 10"
|
|
run permissive /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
|
|
|
describe Correcting situation
|
|
# `apply` performs a service reload after each change in the config file
|
|
# the service needs to be started for the reload to succeed
|
|
service ssh start
|
|
# if the audit script provides "apply" option, enable and run it
|
|
sed -i 's/audit/enabled/' /opt/debian-cis/etc/conf.d/"${script}".cfg
|
|
/opt/debian-cis/bin/hardening/"${script}".sh || true
|
|
|
|
describe Checking resolved state
|
|
register_test retvalshouldbe 0
|
|
register_test contain "[ OK ] ^maxsessions[[:space:]]*10 is present in /etc/ssh/sshd_config"
|
|
run resolved /opt/debian-cis/bin/hardening/"${script}".sh --audit-all
|
|
}
|