Created
October 13, 2020 17:12
-
-
Save Niemi/a9e19af92da4d04c6f63775f47ebfc32 to your computer and use it in GitHub Desktop.
check tls 1.3 connection without nmap
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#https://isc.sans.edu/forums/diary/Testing+TLSv13+and+supported+ciphers/25442/ | |
$ for cipher in TLS_AES_128_GCM_SHA256 TLS_AES_256_GCM_SHA384 TLS_CHACHA20_POLY1305_SHA256 TLS_AES_128_CCM_SHA256 TLS_AES_128_CCM_8_SHA256 ; do openssl s_client -tls1_3 -ciphersuites $cipher -connect www.cloudflare.com:443 < /dev/null > /dev/null 2>&1 && echo "$cipher" ; done |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment