mirror of
https://github.com/drwetter/testssl.sh.git
synced 2026-07-15 03:27:38 +02:00
Now fix the existing non-compliant issues
18422: if [[ $tmp_result -eq 1 ]] && [[ loop_reneg -eq 1 ]]; then 19633: [[ aaa == bbb ]] # provoke return code=1 450:TRUSTED1ST="" # Contains the `-trusted_first` flag, if this version of openssl supports it The latter check be amended/corrected later, so that backticks in comments are allowed.
This commit is contained in:
+3
-3
@@ -447,7 +447,7 @@ KEY_EXCH_SCORE=100 # Keeps track of the score for category
|
|||||||
CIPH_STR_BEST=0 # Keeps track of the best bit size for category 3 "Cipher Strength"
|
CIPH_STR_BEST=0 # Keeps track of the best bit size for category 3 "Cipher Strength"
|
||||||
CIPH_STR_WORST=100000 # Keeps track of the worst bit size for category 3 "Cipher Strength"
|
CIPH_STR_WORST=100000 # Keeps track of the worst bit size for category 3 "Cipher Strength"
|
||||||
# Intentionally set very high, so it can be set to 0, if necessary
|
# Intentionally set very high, so it can be set to 0, if necessary
|
||||||
TRUSTED1ST="" # Contains the `-trusted_first` flag, if this version of openssl supports it
|
TRUSTED1ST="" # Contains the "-trusted_first" flag, if this version of openssl supports it
|
||||||
|
|
||||||
########### Global variables for parallel mass testing
|
########### Global variables for parallel mass testing
|
||||||
#
|
#
|
||||||
@@ -18419,7 +18419,7 @@ run_renego() {
|
|||||||
tmp_result=2
|
tmp_result=2
|
||||||
rm -f $TEMPDIR/was_killed
|
rm -f $TEMPDIR/was_killed
|
||||||
fi
|
fi
|
||||||
if [[ $tmp_result -eq 1 ]] && [[ loop_reneg -eq 1 ]]; then
|
if [[ $tmp_result -eq 1 ]] && [[ $loop_reneg -eq 1 ]]; then
|
||||||
tmp_result=3
|
tmp_result=3
|
||||||
fi
|
fi
|
||||||
if [[ $SERVICE != HTTP ]]; then
|
if [[ $SERVICE != HTTP ]]; then
|
||||||
@@ -19630,7 +19630,7 @@ run_drown() {
|
|||||||
if [[ $(has_server_protocol ssl2) -ne 1 ]]; then
|
if [[ $(has_server_protocol ssl2) -ne 1 ]]; then
|
||||||
sslv2_sockets
|
sslv2_sockets
|
||||||
else
|
else
|
||||||
[[ aaa == bbb ]] # provoke return code=1
|
false
|
||||||
fi
|
fi
|
||||||
|
|
||||||
case $? in
|
case $? in
|
||||||
|
|||||||
Reference in New Issue
Block a user