From 17c0c5291119403a0395001456b2a5f87ccc16ea Mon Sep 17 00:00:00 2001 From: Martin Schurz Date: Sun, 3 Jan 2021 00:48:16 +0100 Subject: [PATCH] reduce max startups in accordance with current cis benchmark 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 e57a77b..e965558 100644 --- a/controls/sshd_spec.rb +++ b/controls/sshd_spec.rb @@ -257,7 +257,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