mitmproxy/examples/modify_form.py
2016-07-07 20:14:52 -07:00

9 lines
272 B
Python

def request(flow):
if flow.request.urlencoded_form:
flow.request.urlencoded_form["mitmproxy"] = "rocks"
else:
# This sets the proper content type and overrides the body.
flow.request.urlencoded_form = [
("foo", "bar")
]