From 6a333d17b7107c5a2e90560def3ee7693bf8a489 Mon Sep 17 00:00:00 2001 From: David Cooper Date: Thu, 27 Feb 2025 13:56:22 -0800 Subject: [PATCH] OpenSSL 3.5 compatibility With the current master branch of OpenSSL (3.5.0-dev), the output that is provided by s_client has changed in the case of a cipher suite that uses an ephemeral key. Rather than preceding the ephemeral key information with "Server Temp Key: ", it is now preceded by either "Peer Temp Key:" or "Negotiated TLS1.3 group:". This commit modifies the lines that extract ephemeral key information from OpenSSL responses to accept any of these strings. --- testssl.sh | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/testssl.sh b/testssl.sh index 1dce452..ca68b89 100755 --- a/testssl.sh +++ b/testssl.sh @@ -5216,7 +5216,7 @@ run_client_simulation() { fi if [[ $sclient_success -eq 0 ]]; then # If an ephemeral DH key was used, check that the number of bits is within range. - temp=$(awk -F': ' '/^Server Temp Key/ { print $2 }' "$TMPFILE") # extract line + temp=$(awk -F': ' '/^Server Temp Key|^Peer Temp Key/ { print $2 }' "$TMPFILE") # extract line what_dh="${temp%%,*}" bits="${temp##*, }" # formatting @@ -6706,7 +6706,7 @@ pr_cipher_quality() { read_dhtype_from_file() { local temp kx - temp=$(awk -F': ' '/^Server Temp Key/ { print $2 }' "$1") # extract line + temp=$(awk -F': ' '/^Server Temp Key|^Peer Temp Key|^Negotiated TLS1.3 group/ { print $2 }' "$1") # extract line kx="Kx=${temp%%,*}" [[ "$kx" == "Kx=X25519" ]] && kx="Kx=ECDH" [[ "$kx" == "Kx=X448" ]] && kx="Kx=ECDH" @@ -6739,7 +6739,7 @@ read_dhbits_from_file() { local add="" local old_fart=" (your $OPENSSL cannot show DH bits)" - temp=$(awk -F': ' '/^Server Temp Key/ { print $2 }' "$1") # extract line + temp=$(awk -F': ' '/^Server Temp Key|^Peer Temp Key|^Negotiated TLS1.3 group/ { print $2 }' "$1") # extract line what_dh="${temp%%,*}" bits="${temp##*, }" curve="${temp#*, }" @@ -10910,7 +10910,7 @@ run_fs() { [[ -z "$curves_to_test" ]] && break $OPENSSL s_client $(s_client_options "$proto -cipher "\'${ecdhe_cipher_list:1}\'" -ciphersuites "\'${tls13_cipher_list:1}\'" -curves "${curves_to_test:1}" $STARTTLS $BUGS -connect $NODEIP:$PORT $PROXY $SNI") &>$TMPFILE $TMPFILE