blob: b63a158607411bc3d255c9512380e439ed334744 (
plain)
1
2
3
4
5
6
7
8
|
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")
]
|