From 74aff39b28fe368c94f473c7972feaa75683a18a Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Wed, 8 Apr 2015 00:21:49 +0200 Subject: add example which uses filt --- examples/filt.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 examples/filt.py (limited to 'examples/filt.py') diff --git a/examples/filt.py b/examples/filt.py new file mode 100644 index 00000000..dc241046 --- /dev/null +++ b/examples/filt.py @@ -0,0 +1,15 @@ +# This scripts demonstrates how to use mitmproxy's filter pattern in inline scripts. +# Usage: mitmdump -s "filt.py FILTER" + +from libmproxy import filt + +def start(context, argv): + print argv + if len(argv) != 2: + raise ValueError("Usage: -s 'filt.py FILTER'") + context.filter = filt.parse(argv[1]) + +def response(context, flow): + if flow.match(context.filter): + print("Flow matches filter:") + print(flow) \ No newline at end of file -- cgit v1.2.3