mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-27 02:24:18 +00:00
[#514] Add support for ignoring payload params in multipart/form-data
This commit is contained in:
parent
ec4a6ec4e5
commit
244ef243d7
@ -210,33 +210,13 @@ class ViewMultipart:
|
|||||||
prompt = ("multipart", "m")
|
prompt = ("multipart", "m")
|
||||||
content_types = ["multipart/form-data"]
|
content_types = ["multipart/form-data"]
|
||||||
def __call__(self, hdrs, content, limit):
|
def __call__(self, hdrs, content, limit):
|
||||||
v = hdrs.get_first("content-type")
|
v = utils.multipartdecode(hdrs, content)
|
||||||
if v:
|
if v:
|
||||||
v = utils.parse_content_type(v)
|
|
||||||
if not v:
|
|
||||||
return
|
|
||||||
boundary = v[2].get("boundary")
|
|
||||||
if not boundary:
|
|
||||||
return
|
|
||||||
|
|
||||||
rx = re.compile(r'\bname="([^"]+)"')
|
|
||||||
keys = []
|
|
||||||
vals = []
|
|
||||||
|
|
||||||
for i in content.split("--" + boundary):
|
|
||||||
parts = i.splitlines()
|
|
||||||
if len(parts) > 1 and parts[0][0:2] != "--":
|
|
||||||
match = rx.search(parts[1])
|
|
||||||
if match:
|
|
||||||
keys.append(match.group(1) + ":")
|
|
||||||
vals.append(netlib.utils.cleanBin(
|
|
||||||
"\n".join(parts[3+parts[2:].index(""):])
|
|
||||||
))
|
|
||||||
r = [
|
r = [
|
||||||
urwid.Text(("highlight", "Form data:\n")),
|
urwid.Text(("highlight", "Form data:\n")),
|
||||||
]
|
]
|
||||||
r.extend(common.format_keyvals(
|
r.extend(common.format_keyvals(
|
||||||
zip(keys, vals),
|
v,
|
||||||
key = "header",
|
key = "header",
|
||||||
val = "text"
|
val = "text"
|
||||||
))
|
))
|
||||||
|
@ -236,7 +236,7 @@ class ServerPlaybackState:
|
|||||||
]
|
]
|
||||||
|
|
||||||
if not self.ignore_content:
|
if not self.ignore_content:
|
||||||
form_contents = r.get_form_urlencoded()
|
form_contents = r.get_form()
|
||||||
if self.ignore_payload_params and form_contents:
|
if self.ignore_payload_params and form_contents:
|
||||||
key.extend(
|
key.extend(
|
||||||
p for p in form_contents
|
p for p in form_contents
|
||||||
|
@ -15,6 +15,7 @@ from ..proxy.connection import ServerConnection
|
|||||||
from .. import encoding, utils, controller, stateobject, proxy
|
from .. import encoding, utils, controller, stateobject, proxy
|
||||||
|
|
||||||
HDR_FORM_URLENCODED = "application/x-www-form-urlencoded"
|
HDR_FORM_URLENCODED = "application/x-www-form-urlencoded"
|
||||||
|
HDR_FORM_MULTIPART = "multipart/form-data"
|
||||||
CONTENT_MISSING = 0
|
CONTENT_MISSING = 0
|
||||||
|
|
||||||
|
|
||||||
@ -507,6 +508,19 @@ class HTTPRequest(HTTPMessage):
|
|||||||
"""
|
"""
|
||||||
self.headers["Host"] = [self.host]
|
self.headers["Host"] = [self.host]
|
||||||
|
|
||||||
|
def get_form(self):
|
||||||
|
"""
|
||||||
|
Retrieves the URL-encoded or multipart form data, returning an ODict object.
|
||||||
|
Returns an empty ODict if there is no data or the content-type
|
||||||
|
indicates non-form data.
|
||||||
|
"""
|
||||||
|
if self.content:
|
||||||
|
if self.headers.in_any("content-type", HDR_FORM_URLENCODED, True):
|
||||||
|
return self.get_form_urlencoded()
|
||||||
|
elif self.headers.in_any("content-type", HDR_FORM_MULTIPART, True):
|
||||||
|
return self.get_form_multipart()
|
||||||
|
return ODict([])
|
||||||
|
|
||||||
def get_form_urlencoded(self):
|
def get_form_urlencoded(self):
|
||||||
"""
|
"""
|
||||||
Retrieves the URL-encoded form data, returning an ODict object.
|
Retrieves the URL-encoded form data, returning an ODict object.
|
||||||
@ -517,6 +531,11 @@ class HTTPRequest(HTTPMessage):
|
|||||||
return ODict(utils.urldecode(self.content))
|
return ODict(utils.urldecode(self.content))
|
||||||
return ODict([])
|
return ODict([])
|
||||||
|
|
||||||
|
def get_form_multipart(self):
|
||||||
|
if self.content and self.headers.in_any("content-type", HDR_FORM_MULTIPART, True):
|
||||||
|
return ODict(utils.multipartdecode(self.headers, self.content))
|
||||||
|
return ODict([])
|
||||||
|
|
||||||
def set_form_urlencoded(self, odict):
|
def set_form_urlencoded(self, odict):
|
||||||
"""
|
"""
|
||||||
Sets the body to the URL-encoded form data, and adds the
|
Sets the body to the URL-encoded form data, and adds the
|
||||||
|
@ -69,6 +69,33 @@ def urlencode(s):
|
|||||||
return urllib.urlencode(s, False)
|
return urllib.urlencode(s, False)
|
||||||
|
|
||||||
|
|
||||||
|
def multipartdecode(hdrs, content):
|
||||||
|
"""
|
||||||
|
Takes a multipart boundary encoded string and returns list of (key, value) tuples.
|
||||||
|
"""
|
||||||
|
v = hdrs.get_first("content-type")
|
||||||
|
if v:
|
||||||
|
v = parse_content_type(v)
|
||||||
|
if not v:
|
||||||
|
return []
|
||||||
|
boundary = v[2].get("boundary")
|
||||||
|
if not boundary:
|
||||||
|
return []
|
||||||
|
|
||||||
|
rx = re.compile(r'\bname="([^"]+)"')
|
||||||
|
r = []
|
||||||
|
|
||||||
|
for i in content.split("--" + boundary):
|
||||||
|
parts = i.splitlines()
|
||||||
|
if len(parts) > 1 and parts[0][0:2] != "--":
|
||||||
|
match = rx.search(parts[1])
|
||||||
|
if match:
|
||||||
|
key = match.group(1)
|
||||||
|
value = "".join(parts[3+parts[2:].index(""):])
|
||||||
|
r.append((key, value))
|
||||||
|
return r
|
||||||
|
return []
|
||||||
|
|
||||||
def pretty_size(size):
|
def pretty_size(size):
|
||||||
suffixes = [
|
suffixes = [
|
||||||
("B", 2**10),
|
("B", 2**10),
|
||||||
|
Loading…
Reference in New Issue
Block a user