mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
22 lines
569 B
Python
22 lines
569 B
Python
#!/usr/bin/env python
|
|
"""
|
|
Read a mitmproxy dump file.
|
|
"""
|
|
from mitmproxy import io, http
|
|
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)
|
|
if isinstance(f, http.HTTPFlow):
|
|
print(f.request.host)
|
|
pp.pprint(f.get_state())
|
|
print("")
|
|
except FlowReadException as e:
|
|
print(f"Flow file corrupted: {e}")
|