mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-02 18:57:22 +00:00
5 lines
175 B
Python
5 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
|