mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
17 lines
440 B
Python
17 lines
440 B
Python
#!/usr/bin/env python
|
|
#
|
|
# Simple script showing how to read a mitmproxy dump file
|
|
#
|
|
|
|
from libmproxy import flow
|
|
import json, sys
|
|
|
|
with open("logfile", "rb") as f:
|
|
freader = flow.FlowReader(f)
|
|
try:
|
|
for i in freader.stream():
|
|
print i.request.host
|
|
json.dump(i._get_state(), sys.stdout, indent=4)
|
|
print ""
|
|
except flow.FlowReadError, v:
|
|
print "Flow file corrupted. Stopped loading." |