Skip to content

Instantly share code, notes, and snippets.

@dryliketoast
Created March 25, 2020 11:16
Show Gist options
  • Save dryliketoast/7200655da1efc3c403b215f33adcef6e to your computer and use it in GitHub Desktop.
Save dryliketoast/7200655da1efc3c403b215f33adcef6e to your computer and use it in GitHub Desktop.
On a side note you can use nmap with ssl-enum-ciphers script as follows
`nmap --script ssl-enum-ciphers -p 443 example.com`
You will get a response like this.
```
PORT STATE SERVICE
443/tcp open https
| ssl-enum-ciphers:
| SSLv3:
| ciphers:
| TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA - strong
| TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA - strong
| TLS_ECDHE_RSA_WITH_AES_256_CBC_SHA - strong
| TLS_RSA_WITH_RC4_128_MD5 - strong
| TLS_RSA_WITH_RC4_128_SHA - strong
| compressors:
| NULL
| TLSv1.0:
| ciphers:
| TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA - strong
| TLS_RSA_WITH_RC4_128_MD5 - strong
| TLS_RSA_WITH_RC4_128_SHA - strong
| compressors:
| NULL
| TLSv1.1:
| ciphers:
| TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA - strong
| TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA - strong
| compressors:
| NULL
| TLSv1.2:
| ciphers:
| TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA - strong
| TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA - strong
| TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256 - strong
| compressors:
| NULL
|_ least strength: strong
```
As you can see it lists all the supported versions of ssl/tls as well as the cipher suites
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment