我正在使用 CentOS 7。我想检查远程 Web 服务器是否支持 TLS1.3。
我曾尝试过 nmap,但到目前为止,nmap(版本 7.80)不支持 TLS1.3
有没有简单的方法可以检查?
答案1
我很确定 openssl (你至少需要 1.1.1 版本) 就能做到这一点。
openssl s_client -connect www.example.com:443 -tls1_3
看https://raymii.org/s/tutorials/OpenSSL_test_TLSv1.3_connection_with_s_client.html也一样。
答案2
Openssl s_client-连接 ip:端口-tls1_3
它可以帮助......