mirror of
https://github.com/drwetter/testssl.sh.git
synced 2025-04-04 00:34:01 +02:00
Fix OpenSSL version check
Before version 3.0.0, OpenSSL versions includes letters (e.g., 1.1.1w). Such version numbers confuse [[ ${OSSL_VER//./} -ge 210 ]]. Since this check is only needed for LibreSSL, this commit adds a conditional so that the check is only performed for LibreSSL.
This commit is contained in:
parent
73be4f7381
commit
ad8684d324
@ -20622,7 +20622,7 @@ find_openssl_binary() {
|
|||||||
OPENSSL_NR_CIPHERS=$(count_ciphers "$(actually_supported_osslciphers 'ALL:COMPLEMENTOFALL' 'ALL')")
|
OPENSSL_NR_CIPHERS=$(count_ciphers "$(actually_supported_osslciphers 'ALL:COMPLEMENTOFALL' 'ALL')")
|
||||||
|
|
||||||
if [[ $OPENSSL_NR_CIPHERS -le 140 ]]; then
|
if [[ $OPENSSL_NR_CIPHERS -le 140 ]]; then
|
||||||
[[ ${OSSL_VER//./} -ge 210 ]] && HAS_DH_BITS=true
|
[[ "$OSSL_NAME" =~ LibreSSL ]] && [[ ${OSSL_VER//./} -ge 210 ]] && HAS_DH_BITS=true
|
||||||
if "$SSL_NATIVE"; then
|
if "$SSL_NATIVE"; then
|
||||||
outln
|
outln
|
||||||
pr_warning "LibreSSL/OpenSSL in native ssl mode with poor cipher support is not a good choice for testing INSECURE features!"
|
pr_warning "LibreSSL/OpenSSL in native ssl mode with poor cipher support is not a good choice for testing INSECURE features!"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user