mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-02 02:37:15 +00:00
7 lines
133 B
Python
7 lines
133 B
Python
|
|
def request(context, flow):
|
|
q = flow.request.query
|
|
if q:
|
|
q["mitmproxy"] = ["rocks"]
|
|
flow.request.query = q
|
|
|