mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
6 lines
175 B
Python
6 lines
175 B
Python
def request(context, flow):
|
|
form = flow.request.urlencoded_form
|
|
if form is not None:
|
|
form["mitmproxy"] = ["rocks"]
|
|
flow.request.urlencoded_form = form
|