mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
21 lines
506 B
Python
Executable File
21 lines
506 B
Python
Executable File
#!/usr/bin/env python
|
|
#
|
|
# Simple script showing how to read a mitmproxy dump file
|
|
#
|
|
|
|
from libmproxy import flow
|
|
import pprint
|
|
import sys
|
|
|
|
with open(sys.argv[1], "rb") as logfile:
|
|
freader = flow.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 flow.FlowReadError as v:
|
|
print "Flow file corrupted. Stopped loading."
|