From 21b386b17df28804ecca884d3ae84faa6d70d925 Mon Sep 17 00:00:00 2001 From: schurzi Date: Mon, 11 Jan 2021 20:32:29 +0100 Subject: [PATCH] reduce max startups in accordance with current cis benchmark (#186) Signed-off-by: Martin Schurz --- controls/sshd_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controls/sshd_spec.rb b/controls/sshd_spec.rb index be1efc2..32cdb07 100644 --- a/controls/sshd_spec.rb +++ b/controls/sshd_spec.rb @@ -258,7 +258,7 @@ title 'Server: Specify maximum startups' desc 'Limit the number of concurrent unauthenticated sessions to prevent Denial of Service (DoS) against a running SSH daemon.' describe sshd_config(sshd_custom_path + '/sshd_config') do - its('MaxStartups') { should eq('10:30:100') } + its('MaxStartups') { should eq('10:30:60') } end end