mitmproxy/examples/dup_and_replay.py
2016-02-18 09:27:08 +13:00

5 lines
127 B
Python

def request(context, flow):
f = context.duplicate_flow(flow)
f.request.path = "/changed"
context.replay_request(f)