2016-11-21 01:16:20 +00:00
|
|
|
"""
|
|
|
|
This script how to generate a mitmproxy dump file,
|
|
|
|
as it would also be generated by passing `-w` to mitmproxy.
|
|
|
|
In contrast to `-w`, this gives you full control over which
|
|
|
|
flows should be saved and also allows you to rotate files or log
|
|
|
|
to multiple files in parallel.
|
|
|
|
"""
|
2015-04-12 01:47:58 +00:00
|
|
|
import random
|
|
|
|
import sys
|
2016-10-19 02:25:39 +00:00
|
|
|
from mitmproxy import io
|
2015-04-12 01:50:14 +00:00
|
|
|
|
2016-07-22 23:57:31 +00:00
|
|
|
|
|
|
|
class Writer:
|
|
|
|
def __init__(self, path):
|
|
|
|
if path == "-":
|
|
|
|
f = sys.stdout
|
|
|
|
else:
|
|
|
|
f = open(path, "wb")
|
2016-10-19 02:08:35 +00:00
|
|
|
self.w = io.FlowWriter(f)
|
2016-07-22 23:57:31 +00:00
|
|
|
|
|
|
|
def response(self, flow):
|
|
|
|
if random.choice([True, False]):
|
|
|
|
self.w.add(flow)
|
2015-04-12 01:50:14 +00:00
|
|
|
|
2016-07-08 01:37:33 +00:00
|
|
|
|
|
|
|
def start():
|
2016-06-14 01:17:09 +00:00
|
|
|
if len(sys.argv) != 2:
|
2015-04-12 01:47:58 +00:00
|
|
|
raise ValueError('Usage: -s "flowriter.py filename"')
|
2016-07-22 23:57:31 +00:00
|
|
|
return Writer(sys.argv[1])
|