mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-01 18:27:18 +00:00
6 lines
141 B
Python
6 lines
141 B
Python
|
|
def request(context, flow):
|
|
q = flow.request.get_query()
|
|
if q:
|
|
q["mitmproxy"] = ["rocks"]
|
|
flow.request.set_query(q)
|