We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents bac8cb7 + a8c8bfe commit 14ebd0fCopy full SHA for 14ebd0f
testssl.sh
@@ -11715,6 +11715,8 @@ check_tls_serverhellodone() {
11715
decrypted_response+="${tls_content_type}0301$(printf "%04X" $((plaintext_len/2)))${plaintext:0:plaintext_len}"
11716
if [[ "$tls_content_type" == 16 ]]; then
11717
tls_handshake_ascii+="${plaintext:0:plaintext_len}"
11718
+ # Data after the Finished message is encrypted under a different key.
11719
+ [[ "${plaintext:0:2}" == 14 ]] && break
11720
elif [[ "$tls_content_type" == 15 ]]; then
11721
tls_alert_ascii+="${plaintext:0:plaintext_len}"
11722
else
0 commit comments