mitmproxy/examples/simple/io_read_dumpfile.py

23 lines
550 B
Python
Raw Normal View History

#!/usr/bin/env python
#
# Simple script showing how to read a mitmproxy dump file
#
from mitmproxy import io
2016-04-29 18:17:49 +00:00
from mitmproxy.exceptions import FlowReadException
import pprint
2015-05-30 00:03:28 +00:00
import sys
2017-04-28 21:56:14 +00:00
2015-08-16 23:29:24 +00:00
with open(sys.argv[1], "rb") as logfile:
freader = io.FlowReader(logfile)
pp = pprint.PrettyPrinter(indent=4)
try:
2014-09-08 14:02:31 +00:00
for f in freader.stream():
print(f)
print(f.request.host)
pp.pprint(f.get_state())
print("")
2016-04-29 18:17:49 +00:00
except FlowReadException as e:
print("Flow file corrupted: {}".format(e))