diff options
author | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2017-08-17 10:18:05 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <thomas@kriechbaumer.name> | 2017-12-12 22:09:46 +0100 |
commit | 3cb459d56daeae8fd2b923c27f39ca5595a50e7b (patch) | |
tree | 9b48be479690bf52b35b5283462b4f025b60f5ad /docs/protocols/tcpproxy.rst | |
parent | 5214f544e7b690dea2a45cb4cda44bbffec9a77e (diff) | |
download | mitmproxy-3cb459d56daeae8fd2b923c27f39ca5595a50e7b.tar.gz mitmproxy-3cb459d56daeae8fd2b923c27f39ca5595a50e7b.tar.bz2 mitmproxy-3cb459d56daeae8fd2b923c27f39ca5595a50e7b.zip |
docs++: add individual protocol pages
Diffstat (limited to 'docs/protocols/tcpproxy.rst')
-rw-r--r-- | docs/protocols/tcpproxy.rst | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/docs/protocols/tcpproxy.rst b/docs/protocols/tcpproxy.rst new file mode 100644 index 00000000..77248573 --- /dev/null +++ b/docs/protocols/tcpproxy.rst @@ -0,0 +1,31 @@ +.. _tcp_proxy: + +TCP Proxy / Fallback +==================== + +In case mitmproxy does not handle a specific protocol, you can exempt +hostnames from processing, so that mitmproxy acts as a generic TCP forwarder. +This feature is closely related to the :ref:`passthrough` functionality, +but differs in two important aspects: + +- The raw TCP messages are printed to the event log. +- SSL connections will be intercepted. + +Please note that message interception or modification are not possible yet. +If you are not interested in the raw TCP messages, you should use the ignore domains feature. + +How it works +------------ + +================== ====================== +command-line ``--tcp HOST`` +mitmproxy shortcut :kbd:`O` then :kbd:`T` +================== ====================== + +For a detailed description how the hostname pattern works, please look at the :ref:`passthrough` +feature. + +.. seealso:: + + - :ref:`passthrough` + - :ref:`streaming` |