2014-03-10 21:36:47 +00:00
|
|
|
from __future__ import absolute_import
|
2012-04-02 23:10:25 +00:00
|
|
|
import urwid
|
2014-03-10 21:36:47 +00:00
|
|
|
from . import common
|
2014-02-05 23:53:39 +00:00
|
|
|
from .. import utils
|
2012-04-02 23:10:25 +00:00
|
|
|
|
|
|
|
footer = [
|
|
|
|
('heading_key', "q"), ":back ",
|
|
|
|
]
|
|
|
|
|
|
|
|
class FlowDetailsView(urwid.ListBox):
|
|
|
|
def __init__(self, master, flow, state):
|
|
|
|
self.master, self.flow, self.state = master, flow, state
|
|
|
|
urwid.ListBox.__init__(
|
|
|
|
self,
|
|
|
|
self.flowtext()
|
|
|
|
)
|
|
|
|
|
|
|
|
def keypress(self, size, key):
|
|
|
|
key = common.shortcuts(key)
|
|
|
|
if key == "q":
|
|
|
|
self.master.statusbar = self.state[0]
|
|
|
|
self.master.body = self.state[1]
|
|
|
|
self.master.header = self.state[2]
|
2015-03-18 15:56:12 +00:00
|
|
|
self.master.loop.widget = self.master.make_view()
|
2012-04-02 23:10:25 +00:00
|
|
|
return None
|
|
|
|
elif key == "?":
|
|
|
|
key = None
|
|
|
|
return urwid.ListBox.keypress(self, size, key)
|
|
|
|
|
|
|
|
def flowtext(self):
|
|
|
|
text = []
|
|
|
|
|
|
|
|
title = urwid.Text("Flow details")
|
|
|
|
title = urwid.Padding(title, align="left", width=("relative", 100))
|
|
|
|
title = urwid.AttrWrap(title, "heading")
|
|
|
|
text.append(title)
|
|
|
|
|
2015-03-03 03:44:31 +00:00
|
|
|
cc = self.flow.client_conn
|
|
|
|
sc = self.flow.server_conn
|
2015-03-04 17:02:01 +00:00
|
|
|
req = self.flow.request
|
|
|
|
resp = self.flow.response
|
2015-03-03 03:44:31 +00:00
|
|
|
|
|
|
|
if sc:
|
2014-02-05 23:53:39 +00:00
|
|
|
text.append(urwid.Text([("head", "Server Connection:")]))
|
|
|
|
parts = [
|
2014-09-16 13:36:26 +00:00
|
|
|
["Address", "%s:%s" % sc.address()],
|
2014-02-05 23:53:39 +00:00
|
|
|
]
|
2015-03-04 17:02:01 +00:00
|
|
|
|
2014-02-05 23:53:39 +00:00
|
|
|
text.extend(common.format_keyvals(parts, key="key", val="text", indent=4))
|
|
|
|
|
2015-03-03 03:55:23 +00:00
|
|
|
c = sc.cert
|
2012-04-02 23:10:25 +00:00
|
|
|
if c:
|
|
|
|
text.append(urwid.Text([("head", "Server Certificate:")]))
|
|
|
|
parts = [
|
|
|
|
["Type", "%s, %s bits"%c.keyinfo],
|
2012-04-03 23:24:58 +00:00
|
|
|
["SHA1 digest", c.digest("sha1")],
|
2012-04-03 10:23:07 +00:00
|
|
|
["Valid to", str(c.notafter)],
|
|
|
|
["Valid from", str(c.notbefore)],
|
2012-04-02 23:10:25 +00:00
|
|
|
["Serial", str(c.serial)],
|
|
|
|
[
|
|
|
|
"Subject",
|
|
|
|
urwid.BoxAdapter(
|
|
|
|
urwid.ListBox(common.format_keyvals(c.subject, key="highlight", val="text")),
|
|
|
|
len(c.subject)
|
|
|
|
)
|
2014-02-05 23:53:39 +00:00
|
|
|
],
|
2012-04-02 23:10:25 +00:00
|
|
|
[
|
|
|
|
"Issuer",
|
|
|
|
urwid.BoxAdapter(
|
|
|
|
urwid.ListBox(common.format_keyvals(c.issuer, key="highlight", val="text")),
|
|
|
|
len(c.issuer)
|
|
|
|
)
|
|
|
|
]
|
2014-02-05 23:53:39 +00:00
|
|
|
]
|
2012-04-02 23:10:25 +00:00
|
|
|
|
|
|
|
if c.altnames:
|
|
|
|
parts.append(
|
|
|
|
[
|
|
|
|
"Alt names",
|
|
|
|
", ".join(c.altnames)
|
|
|
|
]
|
|
|
|
)
|
|
|
|
text.extend(common.format_keyvals(parts, key="key", val="text", indent=4))
|
|
|
|
|
2015-03-03 03:44:31 +00:00
|
|
|
if cc:
|
2012-04-02 23:28:07 +00:00
|
|
|
text.append(urwid.Text([("head", "Client Connection:")]))
|
2015-03-03 03:44:31 +00:00
|
|
|
|
2012-04-02 23:28:07 +00:00
|
|
|
parts = [
|
2014-02-05 23:53:39 +00:00
|
|
|
["Address", "%s:%s" % cc.address()],
|
|
|
|
# ["Requests", "%s"%cc.requestcount],
|
2012-04-02 23:28:07 +00:00
|
|
|
]
|
2015-03-04 17:02:01 +00:00
|
|
|
|
2012-04-02 23:28:07 +00:00
|
|
|
text.extend(common.format_keyvals(parts, key="key", val="text", indent=4))
|
2015-03-03 21:38:16 +00:00
|
|
|
|
|
|
|
parts = []
|
|
|
|
|
|
|
|
parts.append(["Client conn. established", utils.format_timestamp_with_milli(cc.timestamp_start) if (cc and cc.timestamp_start) else "active"])
|
|
|
|
parts.append(["Server conn. initiated", utils.format_timestamp_with_milli(sc.timestamp_start) if sc else "active" ])
|
|
|
|
parts.append(["Server conn. TCP handshake", utils.format_timestamp_with_milli(sc.timestamp_tcp_setup) if (sc and sc.timestamp_tcp_setup) else "active"])
|
|
|
|
if sc.ssl_established:
|
|
|
|
parts.append(["Server conn. SSL handshake", utils.format_timestamp_with_milli(sc.timestamp_ssl_setup) if sc.timestamp_ssl_setup else "active"])
|
|
|
|
parts.append(["Client conn. SSL handshake", utils.format_timestamp_with_milli(cc.timestamp_ssl_setup) if (cc and cc.timestamp_ssl_setup) else "active"])
|
|
|
|
parts.append(["First request byte", utils.format_timestamp_with_milli(req.timestamp_start)])
|
|
|
|
parts.append(["Request complete", utils.format_timestamp_with_milli(req.timestamp_end) if req.timestamp_end else "active"])
|
|
|
|
parts.append(["First response byte", utils.format_timestamp_with_milli(resp.timestamp_start) if resp else "active"])
|
|
|
|
parts.append(["Response complete", utils.format_timestamp_with_milli(resp.timestamp_end) if (resp and resp.timestamp_end) else "active"])
|
|
|
|
|
2015-03-04 17:02:01 +00:00
|
|
|
# sort operations by timestamp
|
2015-03-03 21:38:16 +00:00
|
|
|
parts = sorted(parts, key=lambda p: p[1])
|
|
|
|
|
2015-03-03 03:44:31 +00:00
|
|
|
text.append(urwid.Text([("head", "Timing:")]))
|
2015-03-03 21:38:16 +00:00
|
|
|
text.extend(common.format_keyvals(parts, key="key", val="text", indent=4))
|
2012-04-02 23:28:07 +00:00
|
|
|
return text
|