2014-03-10 21:36:47 +00:00
|
|
|
from __future__ import absolute_import
|
2012-04-02 23:10:25 +00:00
|
|
|
import urwid
|
2015-03-30 20:49:07 +00:00
|
|
|
from . import common, searchable
|
2014-02-05 23:53:39 +00:00
|
|
|
from .. import utils
|
2012-04-02 23:10:25 +00:00
|
|
|
|
2015-03-30 20:49:07 +00:00
|
|
|
|
|
|
|
def maybe_timestamp(base, attr):
|
|
|
|
if base and getattr(base, attr):
|
|
|
|
return utils.format_timestamp_with_milli(getattr(base, attr))
|
|
|
|
else:
|
|
|
|
return "active"
|
|
|
|
pass
|
|
|
|
|
|
|
|
|
2015-03-29 06:21:54 +00:00
|
|
|
def flowdetails(state, flow):
|
|
|
|
text = []
|
2012-04-02 23:10:25 +00:00
|
|
|
|
2015-03-29 06:21:54 +00:00
|
|
|
cc = flow.client_conn
|
|
|
|
sc = flow.server_conn
|
|
|
|
req = flow.request
|
|
|
|
resp = flow.response
|
2012-04-02 23:10:25 +00:00
|
|
|
|
2015-03-29 06:21:54 +00:00
|
|
|
if sc:
|
|
|
|
text.append(urwid.Text([("head", "Server Connection:")]))
|
|
|
|
parts = [
|
|
|
|
["Address", "%s:%s" % sc.address()],
|
|
|
|
]
|
2012-04-02 23:10:25 +00:00
|
|
|
|
2015-03-29 06:21:54 +00:00
|
|
|
text.extend(
|
|
|
|
common.format_keyvals(parts, key="key", val="text", indent=4)
|
|
|
|
)
|
2015-03-03 03:44:31 +00:00
|
|
|
|
2015-03-29 06:21:54 +00:00
|
|
|
c = sc.cert
|
|
|
|
if c:
|
|
|
|
text.append(urwid.Text([("head", "Server Certificate:")]))
|
2014-02-05 23:53:39 +00:00
|
|
|
parts = [
|
2015-03-29 06:21:54 +00:00
|
|
|
["Type", "%s, %s bits"%c.keyinfo],
|
|
|
|
["SHA1 digest", c.digest("sha1")],
|
|
|
|
["Valid to", str(c.notafter)],
|
|
|
|
["Valid from", str(c.notbefore)],
|
|
|
|
["Serial", str(c.serial)],
|
|
|
|
[
|
|
|
|
"Subject",
|
|
|
|
urwid.BoxAdapter(
|
|
|
|
urwid.ListBox(
|
|
|
|
common.format_keyvals(
|
|
|
|
c.subject,
|
|
|
|
key="highlight",
|
|
|
|
val="text"
|
|
|
|
)
|
|
|
|
),
|
|
|
|
len(c.subject)
|
|
|
|
)
|
|
|
|
],
|
|
|
|
[
|
|
|
|
"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
|
|
|
]
|
2015-03-04 17:02:01 +00:00
|
|
|
|
2015-03-29 06:21:54 +00:00
|
|
|
if c.altnames:
|
|
|
|
parts.append(
|
2012-04-02 23:10:25 +00:00
|
|
|
[
|
2015-03-29 06:21:54 +00:00
|
|
|
"Alt names",
|
|
|
|
", ".join(c.altnames)
|
2012-04-02 23:10:25 +00:00
|
|
|
]
|
2015-03-29 06:21:54 +00:00
|
|
|
)
|
|
|
|
text.extend(
|
|
|
|
common.format_keyvals(parts, key="key", val="text", indent=4)
|
|
|
|
)
|
2012-04-02 23:10:25 +00:00
|
|
|
|
2015-03-29 06:21:54 +00:00
|
|
|
if cc:
|
|
|
|
text.append(urwid.Text([("head", "Client Connection:")]))
|
2015-03-03 03:44:31 +00:00
|
|
|
|
2015-03-29 06:21:54 +00:00
|
|
|
parts = [
|
|
|
|
["Address", "%s:%s" % cc.address()],
|
|
|
|
# ["Requests", "%s"%cc.requestcount],
|
|
|
|
]
|
2015-03-04 17:02:01 +00:00
|
|
|
|
2015-03-29 06:21:54 +00:00
|
|
|
text.extend(
|
|
|
|
common.format_keyvals(parts, key="key", val="text", indent=4)
|
|
|
|
)
|
2015-03-03 21:38:16 +00:00
|
|
|
|
2015-03-29 06:21:54 +00:00
|
|
|
parts = []
|
|
|
|
|
2015-03-30 20:49:07 +00:00
|
|
|
parts.append(
|
|
|
|
[
|
|
|
|
"Client conn. established",
|
|
|
|
maybe_timestamp(cc, "timestamp_start")
|
|
|
|
]
|
|
|
|
)
|
|
|
|
parts.append(
|
|
|
|
[
|
|
|
|
"Server conn. initiated",
|
|
|
|
maybe_timestamp(sc, "timestamp_start")
|
|
|
|
]
|
|
|
|
)
|
|
|
|
parts.append(
|
|
|
|
[
|
|
|
|
"Server conn. TCP handshake",
|
|
|
|
maybe_timestamp(sc, "timestamp_tcp_setup")
|
|
|
|
]
|
|
|
|
)
|
2015-03-29 06:21:54 +00:00
|
|
|
if sc.ssl_established:
|
2015-03-30 20:49:07 +00:00
|
|
|
parts.append(
|
|
|
|
[
|
|
|
|
"Server conn. SSL handshake",
|
|
|
|
maybe_timestamp(sc, "timestamp_ssl_setup")
|
|
|
|
]
|
|
|
|
)
|
|
|
|
parts.append(
|
|
|
|
[
|
|
|
|
"Client conn. SSL handshake",
|
|
|
|
maybe_timestamp(cc, "timestamp_ssl_setup")
|
|
|
|
]
|
|
|
|
)
|
|
|
|
parts.append(
|
|
|
|
[
|
|
|
|
"First request byte",
|
|
|
|
maybe_timestamp(req, "timestamp_start")
|
|
|
|
]
|
|
|
|
)
|
|
|
|
parts.append(
|
|
|
|
[
|
|
|
|
"Request complete",
|
|
|
|
maybe_timestamp(req, "timestamp_end")
|
|
|
|
]
|
|
|
|
)
|
|
|
|
parts.append(
|
|
|
|
[
|
|
|
|
"First response byte",
|
|
|
|
maybe_timestamp(resp, "timestamp_start")
|
|
|
|
]
|
|
|
|
)
|
|
|
|
parts.append(
|
|
|
|
[
|
|
|
|
"Response complete",
|
|
|
|
maybe_timestamp(resp, "timestamp_end")
|
|
|
|
]
|
|
|
|
)
|
2015-03-29 06:21:54 +00:00
|
|
|
|
|
|
|
# sort operations by timestamp
|
|
|
|
parts = sorted(parts, key=lambda p: p[1])
|
|
|
|
|
|
|
|
text.append(urwid.Text([("head", "Timing:")]))
|
|
|
|
text.extend(common.format_keyvals(parts, key="key", val="text", indent=4))
|
|
|
|
return searchable.Searchable(state, text)
|