mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 16:17:49 +00:00
533f61f67a
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.
10 lines
192 B
Python
Executable File
10 lines
192 B
Python
Executable File
#!/usr/bin/env python
|
|
import sys
|
|
sys.path.insert(0, "../..")
|
|
import socket, tempfile, ssl, subprocess
|
|
|
|
addr = socket.gethostbyname(sys.argv[1])
|
|
print ssl.get_server_certificate((addr, 443))
|
|
|
|
|