aboutsummaryrefslogtreecommitdiffstats
path: root/examples/tcp_message.py
diff options
context:
space:
mode:
authorMichael J. Bazzinotti <mbazzinotti@gmail.com>2016-01-02 10:00:27 -0500
committerMichael J. Bazzinotti <mbazzinotti@gmail.com>2016-01-10 13:05:01 -0500
commite766838a1a6bbb0b2290a3986ba8ae71c736f6f6 (patch)
tree0042fb0d9f5531f57186285faa13e9ea2600bc23 /examples/tcp_message.py
parentf8d8a80bd07fe1e40577a2090ba47e3cc5abd3d3 (diff)
downloadmitmproxy-e766838a1a6bbb0b2290a3986ba8ae71c736f6f6.tar.gz
mitmproxy-e766838a1a6bbb0b2290a3986ba8ae71c736f6f6.tar.bz2
mitmproxy-e766838a1a6bbb0b2290a3986ba8ae71c736f6f6.zip
Add Inline Script Hooks to TCP mode
Diffstat (limited to 'examples/tcp_message.py')
-rw-r--r--examples/tcp_message.py24
1 files changed, 24 insertions, 0 deletions
diff --git a/examples/tcp_message.py b/examples/tcp_message.py
new file mode 100644
index 00000000..c63368e4
--- /dev/null
+++ b/examples/tcp_message.py
@@ -0,0 +1,24 @@
+'''
+tcp_message Inline Script Hook API Demonstration
+------------------------------------------------
+
+* modifies packets containing "foo" to "bar"
+* prints various details for each packet.
+
+example cmdline invocation:
+mitmdump -T --host --tcp ".*" -q -s examples/tcp_message.py
+'''
+from netlib.utils import clean_bin
+
+def tcp_message(ctx, tcp_msg):
+ modified_msg = tcp_msg.message.replace("foo", "bar")
+
+ is_modified = False if modified_msg == tcp_msg.message else True
+ tcp_msg.message = modified_msg
+
+ print("[tcp_message{}] from {} {} to {} {}:\r\n{}".format(
+ " (modified)" if is_modified else "",
+ "client" if tcp_msg.sender == tcp_msg.client_conn else "server",
+ tcp_msg.sender.address,
+ "server" if tcp_msg.receiver == tcp_msg.server_conn else "client",
+ tcp_msg.receiver.address, clean_bin(tcp_msg.message)))