diff options
author | Aldo Cortesi <aldo@nullcube.com> | 2012-03-01 21:08:44 +1300 |
---|---|---|
committer | Aldo Cortesi <aldo@nullcube.com> | 2012-03-01 21:08:44 +1300 |
commit | 533f61f67aab38f5bce882ad0dc03b7b5f292956 (patch) | |
tree | 60e02d3cd73a9bfac623db5e1050905cdbb1a158 /test/tools/getcn | |
parent | 8b841bc9e370370716b473f26e001c65e2eee2af (diff) | |
download | mitmproxy-533f61f67aab38f5bce882ad0dc03b7b5f292956.tar.gz mitmproxy-533f61f67aab38f5bce882ad0dc03b7b5f292956.tar.bz2 mitmproxy-533f61f67aab38f5bce882ad0dc03b7b5f292956.zip |
Use PyOpenSSL and PyASN1 for certificate parsing.
Yes, these are two more major dependencies for mitmproxy, but if we're going to
do all the cool things I want to do with SSL certs, there is no other way.
Diffstat (limited to 'test/tools/getcn')
-rwxr-xr-x | test/tools/getcn | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/test/tools/getcn b/test/tools/getcn index 4cc028ca..212977c3 100755 --- a/test/tools/getcn +++ b/test/tools/getcn @@ -1,10 +1,14 @@ #!/usr/bin/env python - import sys -sys.path.insert(0, "../..") -from libmproxy import utils +sys.path.insert(0, "../../") +from libmproxy import certutils + +if len(sys.argv) > 2: + port = int(sys.argv[2]) +else: + pport = 443 -cn, san = utils.get_remote_cn(sys.argv[1], 443) +cn, san = certutils.get_remote_cn(sys.argv[1], port) print cn if san: for i in san: |