2016-11-21 01:16:20 +00:00
|
|
|
"""
|
2020-06-22 23:53:39 +00:00
|
|
|
Generate a mitmproxy dump file.
|
|
|
|
|
2018-05-13 22:31:20 +00:00
|
|
|
This script demonstrates how to generate a mitmproxy dump file,
|
2016-11-21 01:16:20 +00:00
|
|
|
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
|
2017-04-28 21:56:14 +00:00
|
|
|
from mitmproxy import io, http
|
2017-05-01 23:49:25 +00:00
|
|
|
import typing # noqa
|
2015-04-12 01:50:14 +00:00
|
|
|
|
2016-07-22 23:57:31 +00:00
|
|
|
|
|
|
|
class Writer:
|
2017-04-28 21:56:14 +00:00
|
|
|
def __init__(self, path: str) -> None:
|
2018-04-14 23:24:41 +00:00
|
|
|
self.f: typing.IO[bytes] = open(path, "wb")
|
2017-05-26 14:14:20 +00:00
|
|
|
self.w = io.FlowWriter(self.f)
|
2016-07-22 23:57:31 +00:00
|
|
|
|
2017-04-28 21:56:14 +00:00
|
|
|
def response(self, flow: http.HTTPFlow) -> None:
|
2016-07-22 23:57:31 +00:00
|
|
|
if random.choice([True, False]):
|
|
|
|
self.w.add(flow)
|
2015-04-12 01:50:14 +00:00
|
|
|
|
2017-05-26 14:14:20 +00:00
|
|
|
def done(self):
|
|
|
|
self.f.close()
|
|
|
|
|
2016-07-08 01:37:33 +00:00
|
|
|
|
2017-04-25 07:06:24 +00:00
|
|
|
addons = [Writer(sys.argv[1])]
|