mitmproxy/examples/modify_form.py

8 lines
261 B
Python
Raw Normal View History

2014-09-08 14:02:31 +00:00
def request(context, flow):
2015-05-30 00:03:28 +00:00
if "application/x-www-form-urlencoded" in flow.request.headers[
"content-type"]:
form = flow.request.get_form_urlencoded()
form["mitmproxy"] = ["rocks"]
2015-05-30 00:03:28 +00:00
flow.request.set_form_urlencoded(form)