1
0
mirror of https://github.com/drwetter/testssl.sh.git synced 2025-05-21 23:56:03 +02:00

Merge pull request from dcooper16/remove_extra_space

Remove extra space in BEAST output
This commit is contained in:
Dirk Wetter 2018-05-02 11:00:01 +02:00 committed by GitHub
commit 4b39039209
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -13722,9 +13722,9 @@ run_beast(){
done
ciphers_found[i]=true
if ( [[ "$DISPLAY_CIPHERNAMES" =~ openssl ]] && [[ "${ciph[i]}" != "-" ]] ) || [[ "${rfc_ciph[i]}" == "-" ]]; then
detected_cbc_ciphers+=" ${ciph[i]}"
detected_cbc_ciphers+="${ciph[i]} "
else
detected_cbc_ciphers+=" ${rfc_ciph[i]}"
detected_cbc_ciphers+="${rfc_ciph[i]} "
fi
vuln_beast=true
if "$WIDE" && ( [[ ${kx[i]} == "Kx=ECDH" ]] || [[ ${kx[i]} == "Kx=DH" ]] || [[ ${kx[i]} == "Kx=EDH" ]] ); then