From ebeb3e7b9deac78761ed1d13223b0c371d8bcddd Mon Sep 17 00:00:00 2001 From: David Cooper Date: Mon, 17 Mar 2025 08:53:19 -0700 Subject: [PATCH] OpenSSL version check in check_revocation_ocsp() The current code for setting $host_header in check_revocation_ocsp() will not work for LibreSSL 3.* or for upcoming versions of OpenSSL (version 4 or greater). The check will also not work correctly if $OPENSSL2 is used and $OPENSSL2 is not /usr/bin/openssl. This commit fixes these issues. --- testssl.sh | 19 ++++++++----------- 1 file changed, 8 insertions(+), 11 deletions(-) diff --git a/testssl.sh b/testssl.sh index d684ffc..6612e32 100755 --- a/testssl.sh +++ b/testssl.sh @@ -2052,7 +2052,7 @@ check_revocation_ocsp() { local host_header="" local openssl_bin="$OPENSSL" local addtl_warning="" - local smartswitch=false + local ossl_name="$OSSL_NAME" ossl_ver="$OSSL_VER" ossl_ver_major="$OSSL_VER_MAJOR" "$PHONE_OUT" || [[ -n "$stapled_response" ]] || return 0 [[ -n "$GOOD_CA_BUNDLE" ]] || return 0 @@ -2088,8 +2088,12 @@ check_revocation_ocsp() { # See #2516 and probably also #2667 and #1275 . if [[ -x "$OPENSSL2" ]]; then openssl_bin="$OPENSSL2" - smartswitch=true [[ $DEBUG -ge 3 ]] && echo "Switching to $openssl_bin " + ossl_ver="$($openssl_bin version -v 2>/dev/null)" + ossl_name="${ossl_ver%% *}" + ossl_ver="${ossl_ver#$ossl_name }" + ossl_ver="${ossl_ver%% *}" + ossl_ver_major="${ossl_ver%%\.*}" fi else addtl_warning="(a segfault indicates here you need to test this with another binary)" @@ -2100,15 +2104,8 @@ check_revocation_ocsp() { # The following is the default (like "-header Host r11.o.lencr.org") host_header="-header Host ${host_header}" - if "$smartswitch" ; then - case $(openssl version -v | awk -F' ' '{ print $2 }') in - # for those versions it's "-header Host=r11.o.lencr.org" - 3.*|1.1*) host_header=${host_header/Host /Host=} ;; - esac - else - case $OSSL_VER_MAJOR.$OSSL_VER_MINOR in - 3.*|1.1*) host_header=${host_header/Host /Host=} ;; - esac + if [[ "$ossl_ver" == 1.1.* ]] || [[ $ossl_ver_major -ge 3 ]]; then + [[ ! "$ossl_name" =~ LibreSSL ]] && host_header=${host_header/Host /Host=} fi $openssl_bin ocsp -no_nonce ${host_header} -url "$uri" \ -issuer $TEMPDIR/hostcert_issuer.pem -verify_other $TEMPDIR/intermediatecerts.pem \