From: Ralf Jung Date: Mon, 21 Jul 2014 09:03:20 +0000 (+0200) Subject: Add argparse to set host, port X-Git-Url: https://git.ralfj.de/tls-check.git/commitdiff_plain/37041cff9489a475b21dbddeb7ad83e7c404c92a Add argparse to set host, port --- diff --git a/ssl-check b/ssl-check index ae3d26f..3b8a4d0 100755 --- a/ssl-check +++ b/ssl-check @@ -1,5 +1,5 @@ #!/usr/bin/python3 -import subprocess, sys +import subprocess, sys, argparse from collections import OrderedDict from enum import Enum @@ -76,4 +76,27 @@ def test_host(host, port, options=[]): finish_progress() return results -print(test_host('ralfj.de', 443)) +if __name__ == "__main__": + parser = argparse.ArgumentParser(description='Check SSL ciphers supported by a host') + parser.add_argument("host", metavar='HOST[:PORT]', + help="The host to check") + args = parser.parse_args() + + # get host, port + if ':' in args.host: + host, port = args.host.split(':') + else: + host = args.host + port = 443 + + # run the test + results = test_host(host, port) + for protocol, ciphers in results.items(): + print(protocol+":") + if ciphers is None: + print(" Is not supported by client or server") + else: + for cipher, supported in ciphers.items(): + if supported: + print(" "+cipher) + print()