diff options
author | Ujjwal Verma <ujjwalverma1111@gmail.com> | 2017-07-04 10:50:34 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2017-07-04 10:53:23 +0200 |
commit | 7e04ac0578b60821711249993659f3a1a7b48584 (patch) | |
tree | 1b4a16d2fa3fd8a12f7c8d4aa1ec8785daf5f00c | |
parent | 6367dcab8eb83ca073eaf0a38c75f751eb2dc246 (diff) | |
download | mitmproxy-7e04ac0578b60821711249993659f3a1a7b48584.tar.gz mitmproxy-7e04ac0578b60821711249993659f3a1a7b48584.tar.bz2 mitmproxy-7e04ac0578b60821711249993659f3a1a7b48584.zip |
add websocket streaming option
-rw-r--r-- | mitmproxy/addons/streambodies.py | 15 | ||||
-rw-r--r-- | mitmproxy/options.py | 7 | ||||
-rw-r--r-- | test/mitmproxy/addons/test_streambodies.py | 1 |
3 files changed, 14 insertions, 9 deletions
diff --git a/mitmproxy/addons/streambodies.py b/mitmproxy/addons/streambodies.py index b98ed1fa..c841075f 100644 --- a/mitmproxy/addons/streambodies.py +++ b/mitmproxy/addons/streambodies.py @@ -2,7 +2,6 @@ from mitmproxy.net.http import http1 from mitmproxy import exceptions from mitmproxy import ctx from mitmproxy.utils import human -from mitmproxy import websocket class StreamBodies: @@ -18,13 +17,6 @@ class StreamBodies: def run(self, f, is_request): if self.max_size: - if isinstance(f, websocket.WebSocketFlow): - f.stream = True - ctx.log.info("Streaming WebSocket message {client} - {server}".format( - client=human.format_address(f.client_conn.address), - server=human.format_address(f.server_conn.address)) - ) - return r = f.request if is_request else f.response try: expected_size = http1.expected_http_body_size( @@ -45,4 +37,9 @@ class StreamBodies: self.run(f, False) def websocket_start(self, f): - self.run(f, False) + if ctx.options.stream_websockets: + f.stream = True + ctx.log.info("Streaming WebSocket messages between {client} and {server}".format( + client=human.format_address(f.client_conn.address), + server=human.format_address(f.server_conn.address)) + ) diff --git a/mitmproxy/options.py b/mitmproxy/options.py index a3872679..e6c2fed6 100644 --- a/mitmproxy/options.py +++ b/mitmproxy/options.py @@ -155,6 +155,13 @@ class Options(optmanager.OptManager): """ ) self.add_option( + "stream_websockets", bool, False, + """ + Stream WebSocket messages between client and server. + Messages are captured and cannot be modified. + """ + ) + self.add_option( "verbosity", int, 2, "Log verbosity." ) diff --git a/test/mitmproxy/addons/test_streambodies.py b/test/mitmproxy/addons/test_streambodies.py index 54799949..426ec9ae 100644 --- a/test/mitmproxy/addons/test_streambodies.py +++ b/test/mitmproxy/addons/test_streambodies.py @@ -30,6 +30,7 @@ def test_simple(): f.response.headers["content-length"] = "invalid" tctx.cycle(sa, f) + tctx.configure(sa, stream_websockets = True) f = tflow.twebsocketflow() assert not f.stream sa.websocket_start(f) |