2014-02-04 18:10:55 +00:00
|
|
|
#!/usr/bin/env python
|
|
|
|
#
|
|
|
|
# Simple script showing how to read a mitmproxy dump file
|
|
|
|
#
|
|
|
|
|
|
|
|
from libmproxy import flow
|
|
|
|
import json, sys
|
|
|
|
|
2014-09-08 14:02:31 +00:00
|
|
|
with open("logfile", "rb") as logfile:
|
|
|
|
freader = flow.FlowReader(logfile)
|
2014-02-04 18:10:55 +00:00
|
|
|
try:
|
2014-09-08 14:02:31 +00:00
|
|
|
for f in freader.stream():
|
|
|
|
print(f)
|
|
|
|
print(f.request.host)
|
2014-09-16 23:35:14 +00:00
|
|
|
json.dump(f.get_state(), sys.stdout, indent=4)
|
2014-02-04 18:10:55 +00:00
|
|
|
print ""
|
|
|
|
except flow.FlowReadError, v:
|
2014-09-16 23:35:14 +00:00
|
|
|
print "Flow file corrupted. Stopped loading."
|