From d7ba204c6cc1f319fd4d6a5060ed7747f96ae3eb Mon Sep 17 00:00:00 2001 From: Dirk Date: Thu, 30 Oct 2025 16:12:33 +0100 Subject: [PATCH] Shorten badssl GHA as they fail too often (3.2) Remove checks which aren't needed --- t/33_isJSON_severitylevel_valid.t | 2 +- t/51_badssl.com.t | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/t/33_isJSON_severitylevel_valid.t b/t/33_isJSON_severitylevel_valid.t index 00b04a4..d669e34 100755 --- a/t/33_isJSON_severitylevel_valid.t +++ b/t/33_isJSON_severitylevel_valid.t @@ -16,7 +16,7 @@ my ( $tests = 0; my $prg="./testssl.sh"; -my $check2run = '-S -e --ids-friendly -U --severity LOW --color 0'; +my $check2run = '-S --beast --sweet32 --breach --beast --lucky13 --rc4 --severity LOW --color 0'; my $uri = 'badssl.com'; printf "\n%s\n", "Doing severity level checks"; diff --git a/t/51_badssl.com.t b/t/51_badssl.com.t index bc4bc6d..0a604e7 100755 --- a/t/51_badssl.com.t +++ b/t/51_badssl.com.t @@ -15,7 +15,7 @@ my ( ); # OK pass("Running testssl.sh against badssl.com to create a baseline (may take 2~3 minutes)"); $tests++; -my $okout = `$prg -S -e --freak --logjam --drown --rc4 --sweet32 --breach --winshock --crime --jsonfile tmp.json --color 0 badssl.com`; +my $okout = `$prg -S --jsonfile tmp.json --color 0 badssl.com`; my $okjson = json('tmp.json'); unlink 'tmp.json'; cmp_ok(@$okjson,'>',10,"We should have more then 10 findings"); $tests++; @@ -118,7 +118,7 @@ is($found,1,"We should have a finding for this in the JSON output"); $tests++; # TODO: CBC #pass("Running testssl against cbc.badssl.com"); $tests++; -#$out = `./testssl.sh -e -U --jsonfile tmp.json --color 0 cbc.badssl.com`; +#$out = `./testssl.sh -e --jsonfile tmp.json --color 0 cbc.badssl.com`; #like($out, qr/Chain of trust.*?NOT ok\s+\(chain incomplete\)/,"Chain of trust should fail because of incomplete"); $tests++; #$json = json('tmp.json'); #unlink 'tmp.json';