aboutsummaryrefslogtreecommitdiffstats
path: root/tools/getcertnames
diff options
context:
space:
mode:
Diffstat (limited to 'tools/getcertnames')
-rwxr-xr-xtools/getcertnames15
1 files changed, 13 insertions, 2 deletions
diff --git a/tools/getcertnames b/tools/getcertnames
index f39fc635..d22f4980 100755
--- a/tools/getcertnames
+++ b/tools/getcertnames
@@ -1,14 +1,25 @@
#!/usr/bin/env python
import sys
sys.path.insert(0, "../../")
-from netlib import certutils
+from netlib import tcp
+
+
+def get_remote_cert(host, port, sni):
+ c = tcp.TCPClient((host, port))
+ c.connect()
+ c.convert_to_ssl(sni=sni)
+ return c.cert
if len(sys.argv) > 2:
port = int(sys.argv[2])
else:
port = 443
+if len(sys.argv) > 3:
+ sni = sys.argv[3]
+else:
+ sni = None
-cert = certutils.get_remote_cert(sys.argv[1], port, None)
+cert = get_remote_cert(sys.argv[1], port, sni)
print "CN:", cert.cn
if cert.altnames:
print "SANs:",