diff --git a/cipherscan b/cipherscan index 4f467d6..019cca8 100755 --- a/cipherscan +++ b/cipherscan @@ -1506,10 +1506,11 @@ fi if [[ -n $ALLCIPHERS ]]; then echo; echo "All accepted ciphersuites" for c in $($OPENSSLBIN ciphers -v ALL:COMPLEMENTOFALL 2>/dev/null |awk '{print $1}'|sort -u); do - r="fail" osslcommand="$TIMEOUTBIN $TIMEOUT $OPENSSLBIN s_client $SCLIENTARGS -connect $TARGET -cipher $c" if test_cipher_on_target "$osslcommand"; then r="pass" + else + r="fail" fi echo "$c $r"|awk '{printf "%-35s %s\n",$1,$2}' done