blob: 3fe0cf9647686ba53ca629ee8dcff9af7edf8746 (
plain)
1
2
3
4
5
6
7
8
|
def request(context, 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")
]
|