diff --git a/eyespot/__main__.py b/eyespot/__main__.py new file mode 100644 index 0000000..141620e --- /dev/null +++ b/eyespot/__main__.py @@ -0,0 +1,17 @@ +import sys + +from eyespot import certs +from eyespot import ciphers +from eyespot import protocols + +host = ('free.fr', 443) + +for protocol in protocols.get(): + if protocols.test(host, protocol): + print(protocol) + +for cipher in ciphers.get(): + if ciphers.test(host, cipher): + print(cipher) + +print(certs.get(host))