mitmproxy/examples/modify_querystring.py

8 lines
142 B
Python
Raw Normal View History

def request(context, flow):
q = flow.request.get_query()
if q:
q["mitmproxy"] = ["rocks"]
flow.request.set_query(q)