diff options
author | David Weinstein <dweinst@insitusec.com> | 2016-01-26 09:33:03 -0500 |
---|---|---|
committer | David Weinstein <dweinst@insitusec.com> | 2016-01-26 09:33:03 -0500 |
commit | 0a43cc88448e27b5e5fcf7f550d3618241820595 (patch) | |
tree | a704654bd2eaee7792f3efa60d0d9999ae9e3bfc | |
parent | 56ef7d238b9c51aae096391e26d19fdcbc43ac5b (diff) | |
download | mitmproxy-0a43cc88448e27b5e5fcf7f550d3618241820595.tar.gz mitmproxy-0a43cc88448e27b5e5fcf7f550d3618241820595.tar.bz2 mitmproxy-0a43cc88448e27b5e5fcf7f550d3618241820595.zip |
add TlsClientHello repr
-rw-r--r-- | libmproxy/protocol/tls.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libmproxy/protocol/tls.py b/libmproxy/protocol/tls.py index 0955166f..07b9f353 100644 --- a/libmproxy/protocol/tls.py +++ b/libmproxy/protocol/tls.py @@ -291,6 +291,11 @@ class TlsClientHello(object): #self.log("Raw Client Hello: %s" % raw_client_hello.encode("hex"), "debug") raise TlsProtocolException('Cannot parse Client Hello: %s' % repr(e)) + def __repr__(self): + return "TlsClientHello( sni: %s alpn_protocols: %s, cipher_suites: %s)" % \ + (self.client_sni, self.client_alpn_protocols, self.client_cipher_suites) + + class TlsLayer(Layer): def __init__(self, ctx, client_tls, server_tls): self.client_sni = None |