From b886f808beaba097066a1b82fe560b1e70099df0 Mon Sep 17 00:00:00 2001 From: Aldo Cortesi Date: Mon, 31 Jan 2011 13:26:56 +1300 Subject: 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. --- test/scripts/a | 8 ++++++++ test/scripts/err_data | 2 ++ test/scripts/err_return | 5 +++++ test/scripts/nonexecutable | 0 4 files changed, 15 insertions(+) create mode 100755 test/scripts/a create mode 100755 test/scripts/err_data create mode 100755 test/scripts/err_return create mode 100644 test/scripts/nonexecutable (limited to 'test/scripts') 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) diff --git a/test/scripts/err_data b/test/scripts/err_data new file mode 100755 index 00000000..4bb1b1ba --- /dev/null +++ b/test/scripts/err_data @@ -0,0 +1,2 @@ +#!/usr/bin/env python +print "NONSENSE" diff --git a/test/scripts/err_return b/test/scripts/err_return new file mode 100755 index 00000000..a45926b5 --- /dev/null +++ b/test/scripts/err_return @@ -0,0 +1,5 @@ +#!/usr/bin/env python +import sys +sys.path.insert(0, "..") +sys.exit(1) + diff --git a/test/scripts/nonexecutable b/test/scripts/nonexecutable new file mode 100644 index 00000000..e69de29b -- cgit v1.2.3