mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
b51363b3ca
Conflicts: examples/har_extractor.py examples/nonblocking.py examples/read_dumpfile libmproxy/web/app.py
20 lines
484 B
Python
20 lines
484 B
Python
#!/usr/bin/env python
|
|
#
|
|
# Simple script showing how to read a mitmproxy dump file
|
|
#
|
|
|
|
from libmproxy import flow
|
|
import json
|
|
import sys
|
|
|
|
with open("logfile", "rb") as logfile:
|
|
freader = flow.FlowReader(logfile)
|
|
try:
|
|
for f in freader.stream():
|
|
print(f)
|
|
print(f.request.host)
|
|
json.dump(f.get_state(), sys.stdout, indent=4)
|
|
print("")
|
|
except flow.FlowReadError as v:
|
|
print "Flow file corrupted. Stopped loading."
|