Cipherscan API

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..

import requests
headers= {"X-Auth-Email":"youremail@something-here-re.com"}

# or if you want to use api X-AUTH-KEY and api X-AUTH-SECRET
headers = {"X-AUTH-SECRET":"", "X-AUTH-KEY":""}

url="https://api.nmmapper.com/api/v1/cipherscan/?domain=domain-here"
res = requests.get(url, headers=headers)