2023年5月3日 星期三

檢測網站支援 TLS 1.2 TLS 1.3 加密方式

url=https://www.google.com

export url

echo $url

printf "\nTLS 1.3\n=========================================================================\n"

openssl ciphers -s -tls1_3|tr : \  |xargs -n 1 bash -c 'pad="$0                      ";printf "${pad:0:32} = ";curl --insecure -s -S -o /dev/null --no-progress-meter --tls-max 1.3 $url --tls13-ciphers $0&&echo OK '

printf "\nTLS 1.2\n=========================================================================\n"

openssl ciphers -s -tls1_2|tr : \  |xargs -n 1 bash -c 'pad="$0                      ";printf "${pad:0:32} = ";curl --insecure -s -S -o /dev/null --no-progress-meter --tls-max 1.2 $url --ciphers $0&&echo OK '

相關網站
https://www.ssllabs.com/ssltest/

沒有留言: