aboutsummaryrefslogtreecommitdiffstats
path: root/test/scripts/a
diff options
context:
space:
mode:
authorAldo Cortesi <aldo@nullcube.com>2011-01-31 13:26:56 +1300
committerAldo Cortesi <aldo@nullcube.com>2011-01-31 13:26:56 +1300
commitb886f808beaba097066a1b82fe560b1e70099df0 (patch)
treee1ca2132627d0e24d29a2223403a67e36d40c72a /test/scripts/a
parentedb8228dd27c3050f45b536b761eab46672f8eb3 (diff)
downloadmitmproxy-b886f808beaba097066a1b82fe560b1e70099df0.tar.gz
mitmproxy-b886f808beaba097066a1b82fe560b1e70099df0.tar.bz2
mitmproxy-b886f808beaba097066a1b82fe560b1e70099df0.zip
Add an external script API.
External scripts can read a flow, modify it, and then return it to mitmproxy using a simple API. The "|" keyboard shortcut within mitmproxy prompts the user for a script.
Diffstat (limited to 'test/scripts/a')
-rwxr-xr-xtest/scripts/a8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/scripts/a b/test/scripts/a
new file mode 100755
index 00000000..6973a44f
--- /dev/null
+++ b/test/scripts/a
@@ -0,0 +1,8 @@
+#!/usr/bin/env python
+import sys
+sys.path.insert(0, "..")
+from libmproxy import script
+
+f = script.load_flow()
+f.request.host = "TESTOK"
+script.return_flow(f)