Find Which SSL/TLS Versions and Ciphers Are Supported For A Host

Hey folks,

check out one of these if you want to see what ciphers are support by a host:

nmap --script ssl-enum-ciphers -p 443 dahost.mynetwork

or maybe one of these to check for specific protocols:

openssl s_client -connect dahost.mynetwork:443 -tls1

ayyyy

Mm.,