From ec5443438f521eef3bad69b541b1b02792a023c3 Mon Sep 17 00:00:00 2001 From: Robin Wood Date: Tue, 8 Jul 2025 08:32:47 +0100 Subject: [PATCH 1/2] Removed rogue space on QUIC output Before: ``` TLS 1.2 offered (OK) TLS 1.3 offered (OK): final QUIC not offered or timed out NPN/SPDY not offered ALPN/HTTP2 h2, http/1.1 (offered) ``` After: ``` TLS 1.2 offered (OK) TLS 1.3 offered (OK): final QUIC not offered or timed out NPN/SPDY not offered ALPN/HTTP2 h2, http/1.1 (offered) ``` --- testssl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testssl.sh b/testssl.sh index 4a43c9d..83b8682 100755 --- a/testssl.sh +++ b/testssl.sh @@ -6169,7 +6169,7 @@ sub_quic() { if [[ -n "$PROXY" ]]; then proxy_hint_str="(tried directly, is not proxyable):" fi - outln "$proxy_hint_str not offered or timed out" + outln "${proxy_hint_str}not offered or timed out" fileout "$jsonID" "INFO" "$proxy_hint_str not offered" else pr_svrty_best "offered (OK)" From f5fd7cb2c7072f5b052d44b6483468afd297af49 Mon Sep 17 00:00:00 2001 From: Robin Wood Date: Tue, 8 Jul 2025 21:16:26 +0100 Subject: [PATCH 2/2] One more space --- testssl.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/testssl.sh b/testssl.sh index 83b8682..9347093 100755 --- a/testssl.sh +++ b/testssl.sh @@ -6167,7 +6167,7 @@ sub_quic() { wait_kill $! $QUIC_WAIT if [[ $? -ne 0 ]]; then if [[ -n "$PROXY" ]]; then - proxy_hint_str="(tried directly, is not proxyable):" + proxy_hint_str="(tried directly, is not proxyable): " fi outln "${proxy_hint_str}not offered or timed out" fileout "$jsonID" "INFO" "$proxy_hint_str not offered"