mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
30 lines
742 B
Python
30 lines
742 B
Python
"""
|
|
Generate a mitmproxy dump file.
|
|
|
|
This script demonstrates 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.
|
|
"""
|
|
import random
|
|
import sys
|
|
from mitmproxy import io, http
|
|
import typing
|
|
|
|
|
|
class Writer:
|
|
def __init__(self, path: str) -> None:
|
|
self.f: typing.IO[bytes] = open(path, "wb")
|
|
self.w = io.FlowWriter(self.f)
|
|
|
|
def response(self, flow: http.HTTPFlow) -> None:
|
|
if random.choice([True, False]):
|
|
self.w.add(flow)
|
|
|
|
def done(self):
|
|
self.f.close()
|
|
|
|
|
|
addons = [Writer(sys.argv[1])]
|