Cipherscan very simple way to find out which SSL ciphersuites

A very simple way to find out which SSL ciphersuites are supported by a target.

Cipherscan tests the ordering of the SSL/TLS ciphers on a given target, for all major versions of SSL and TLS. It also extracts some certificates informations, TLS options, OCSP stapling and more. Cipherscan is a wrapper above the openssl s_client command line..

1import requests
2headers= {"X-Auth-Email":"youremail@something-here-re.com"}
3
4 # or if you want to use api X-AUTH-KEY and api X-AUTH-SECRET
5headers = {"X-AUTH-SECRET":"", "X-AUTH-KEY":""}
6
7url="https://api.nmmapper.com/api/v1/cipherscan/?domain=domain-here"
8res = requests.get(url, headers=headers)
9#

That is all you need and you will get your ciphersuites.