mitmproxy/examples/dup_and_replay.py
2016-07-07 20:14:52 -07:00

8 lines
182 B
Python

from mitmproxy import master
def request(flow):
f = master.duplicate_flow(flow)
f.request.path = "/changed"
master.replay_request(f, block=True, run_scripthooks=False)