mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 08:11:00 +00:00
Fix crash while streaming
Found using fuzzing. Reproduction with pathoc, given "mitmproxy -s" and pathod running on 9999: get:'http://localhost:9999/p/':s'200:b\'foo\':h\'Content-Length\'=\'3\'':i58,'\x1a':r return flow.FlowMaster.run(self) File "/Users/aldo/mitmproxy/mitmproxy/libmproxy/controller.py", line 111, in run self.tick(self.masterq, 0.01) File "/Users/aldo/mitmproxy/mitmproxy/libmproxy/flow.py", line 613, in tick return controller.Master.tick(self, q, timeout) File "/Users/aldo/mitmproxy/mitmproxy/libmproxy/controller.py", line 101, in tick self.handle(*msg) File "/Users/aldo/mitmproxy/mitmproxy/libmproxy/controller.py", line 118, in handle m(obj) File "/Users/aldo/mitmproxy/mitmproxy/libmproxy/flow.py", line 738, in handle_responseheaders self.stream_large_bodies.run(f, False) File "/Users/aldo/mitmproxy/mitmproxy/libmproxy/flow.py", line 155, in run r.headers, is_request, flow.request.method, code File "/Users/aldo/mitmproxy/mitmproxy/netlib/http.py", line 401, in expected_http_body_size raise HttpError(400 if is_request else 502, "Invalid content-length header: %s" % headers["content-length"]) netlib.http.HttpError: Invalid content-length header: ['\x1a3']
This commit is contained in:
parent
7aee9a7c31
commit
16654ad6a4
@ -248,14 +248,18 @@ def common_options(parser):
|
|||||||
"--stream",
|
"--stream",
|
||||||
action="store", dest="stream_large_bodies", default=None,
|
action="store", dest="stream_large_bodies", default=None,
|
||||||
metavar="SIZE",
|
metavar="SIZE",
|
||||||
help="Stream data to the client if response body exceeds the given threshold. "
|
help="""
|
||||||
"If streamed, the body will not be stored in any way. Understands k/m/g suffixes, i.e. 3m for 3 megabytes."
|
Stream data to the client if response body exceeds the given threshold.
|
||||||
|
If streamed, the body will not be stored in any way. Understands k/m/g
|
||||||
|
suffixes, i.e. 3m for 3 megabytes.
|
||||||
|
"""
|
||||||
)
|
)
|
||||||
|
|
||||||
group = parser.add_argument_group("Proxy Options")
|
group = parser.add_argument_group("Proxy Options")
|
||||||
# We could make a mutually exclusive group out of -R, -U, -T, but we don't do that because
|
# We could make a mutually exclusive group out of -R, -U, -T, but we don't
|
||||||
# - --upstream-server should be in that group as well, but it's already in a different group.
|
# do that because - --upstream-server should be in that group as well, but
|
||||||
# - our own error messages are more helpful
|
# it's already in a different group. - our own error messages are more
|
||||||
|
# helpful
|
||||||
group.add_argument(
|
group.add_argument(
|
||||||
"-b",
|
"-b",
|
||||||
action="store", type=str, dest="addr", default='',
|
action="store", type=str, dest="addr", default='',
|
||||||
@ -265,11 +269,14 @@ def common_options(parser):
|
|||||||
"-I", "--ignore",
|
"-I", "--ignore",
|
||||||
action="append", type=str, dest="ignore_hosts", default=[],
|
action="append", type=str, dest="ignore_hosts", default=[],
|
||||||
metavar="HOST",
|
metavar="HOST",
|
||||||
help="Ignore host and forward all traffic without processing it. "
|
help="""
|
||||||
"In transparent mode, it is recommended to use an IP address (range), not the hostname. "
|
Ignore host and forward all traffic without processing it. In
|
||||||
"In regular mode, only SSL traffic is ignored and the hostname should be used. "
|
transparent mode, it is recommended to use an IP address (range),
|
||||||
"The supplied value is interpreted as a regular expression and matched on the ip or the hostname. "
|
not the hostname. In regular mode, only SSL traffic is ignored and
|
||||||
"Can be passed multiple times. "
|
the hostname should be used. The supplied value is interpreted as a
|
||||||
|
regular expression and matched on the ip or the hostname. Can be
|
||||||
|
passed multiple times.
|
||||||
|
"""
|
||||||
)
|
)
|
||||||
group.add_argument(
|
group.add_argument(
|
||||||
"--tcp",
|
"--tcp",
|
||||||
|
@ -738,8 +738,12 @@ class FlowMaster(controller.Master):
|
|||||||
def handle_responseheaders(self, f):
|
def handle_responseheaders(self, f):
|
||||||
self.run_script_hook("responseheaders", f)
|
self.run_script_hook("responseheaders", f)
|
||||||
|
|
||||||
|
try:
|
||||||
if self.stream_large_bodies:
|
if self.stream_large_bodies:
|
||||||
self.stream_large_bodies.run(f, False)
|
self.stream_large_bodies.run(f, False)
|
||||||
|
except netlib.http.HttpError:
|
||||||
|
f.reply(protocol.KILL)
|
||||||
|
return
|
||||||
|
|
||||||
f.reply()
|
f.reply()
|
||||||
return f
|
return f
|
||||||
|
@ -18,6 +18,10 @@ HDR_FORM_URLENCODED = "application/x-www-form-urlencoded"
|
|||||||
CONTENT_MISSING = 0
|
CONTENT_MISSING = 0
|
||||||
|
|
||||||
|
|
||||||
|
class KillSignal(Exception):
|
||||||
|
pass
|
||||||
|
|
||||||
|
|
||||||
def get_line(fp):
|
def get_line(fp):
|
||||||
"""
|
"""
|
||||||
Get a line, possibly preceded by a blank.
|
Get a line, possibly preceded by a blank.
|
||||||
@ -1001,10 +1005,12 @@ class HTTPHandler(ProtocolHandler):
|
|||||||
|
|
||||||
# call the appropriate script hook - this is an opportunity for an
|
# call the appropriate script hook - this is an opportunity for an
|
||||||
# inline script to set flow.stream = True
|
# inline script to set flow.stream = True
|
||||||
self.c.channel.ask("responseheaders", flow)
|
flow = self.c.channel.ask("responseheaders", flow)
|
||||||
|
if flow == KILL:
|
||||||
# now get the rest of the request body, if body still needs to be read
|
raise KillSignal
|
||||||
# but not streaming this response
|
else:
|
||||||
|
# now get the rest of the request body, if body still needs to be
|
||||||
|
# read but not streaming this response
|
||||||
if flow.response.stream:
|
if flow.response.stream:
|
||||||
flow.response.content = CONTENT_MISSING
|
flow.response.content = CONTENT_MISSING
|
||||||
else:
|
else:
|
||||||
@ -1092,8 +1098,16 @@ class HTTPHandler(ProtocolHandler):
|
|||||||
flow.live.restore_server()
|
flow.live.restore_server()
|
||||||
|
|
||||||
return True # Next flow please.
|
return True # Next flow please.
|
||||||
except (HttpAuthenticationError, http.HttpError, proxy.ProxyError, tcp.NetLibError), e:
|
except (
|
||||||
|
HttpAuthenticationError,
|
||||||
|
http.HttpError,
|
||||||
|
proxy.ProxyError,
|
||||||
|
tcp.NetLibError,
|
||||||
|
), e:
|
||||||
self.handle_error(e, flow)
|
self.handle_error(e, flow)
|
||||||
|
except KillSignal:
|
||||||
|
self.c.log("Connection killed", "info")
|
||||||
|
flow.live = None
|
||||||
finally:
|
finally:
|
||||||
flow.live = None # Connection is not live anymore.
|
flow.live = None # Connection is not live anymore.
|
||||||
return False
|
return False
|
||||||
|
@ -1,4 +1,6 @@
|
|||||||
|
|
||||||
mitmdump: $MITMDUMP -q --stream 1
|
mitmdump: $MITMDUMP -q --stream 1
|
||||||
pathod: $PATHOD -q
|
pathod: $PATHOD -q
|
||||||
pathoc: sleep 2 && $PATHOC $FUZZ_SETTINGS localhost:8080 ./straight_stream_patterns
|
#pathoc: sleep 2 && $PATHOC $FUZZ_SETTINGS localhost:8080 ./straight_stream_patterns
|
||||||
|
pathoc: sleep 2 && $PATHOC $FUZZ_SETTINGS localhost:8080 /tmp/err
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user