mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
5a68d21e8c
mitmproxy.flow.io -> mitmproxy.io mitmproxy.flow.export -> mitmproxy.export
22 lines
551 B
Python
22 lines
551 B
Python
#!/usr/bin/env python
|
|
#
|
|
# Simple script showing how to read a mitmproxy dump file
|
|
#
|
|
|
|
from mitmproxy import flow
|
|
from mitmproxy.exceptions import FlowReadException
|
|
import pprint
|
|
import sys
|
|
|
|
with open(sys.argv[1], "rb") as logfile:
|
|
freader = io.FlowReader(logfile)
|
|
pp = pprint.PrettyPrinter(indent=4)
|
|
try:
|
|
for f in freader.stream():
|
|
print(f)
|
|
print(f.request.host)
|
|
pp.pprint(f.get_state())
|
|
print("")
|
|
except FlowReadException as e:
|
|
print("Flow file corrupted: {}".format(e))
|