From 1d0602b55a74bc477e20aeb505c463a86344145f Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Fri, 11 Dec 2020 15:51:42 +0100 Subject: [PATCH] enable TCP connections by default --- mitmproxy/options.py | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/mitmproxy/options.py b/mitmproxy/options.py index 03cb6945a..2ccadf588 100644 --- a/mitmproxy/options.py +++ b/mitmproxy/options.py @@ -120,10 +120,9 @@ class Options(optmanager.OptManager): "WebSocket support is enabled by default.", ) self.add_option( - "rawtcp", bool, False, - "Enable/disable experimental raw TCP support. TCP connections starting with non-ascii " - "bytes are treated as if they would match tcp_hosts. The heuristic is very rough, use " - "with caution. Disabled by default. " + "rawtcp", bool, True, + "Enable/disable raw TCP connections. " + "TCP connections are enabled by default. " ) self.add_option(