From 33fa49277a821b9d38e8c9bf0bcf2adcfa2f6f04 Mon Sep 17 00:00:00 2001 From: Maximilian Hils Date: Mon, 15 Feb 2016 14:58:46 +0100 Subject: move mitmproxy --- examples/filt.py | 16 ---------------- 1 file changed, 16 deletions(-) delete mode 100644 examples/filt.py (limited to 'examples/filt.py') diff --git a/examples/filt.py b/examples/filt.py deleted file mode 100644 index d2daf9a2..00000000 --- a/examples/filt.py +++ /dev/null @@ -1,16 +0,0 @@ -# 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): - 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) -- cgit v1.2.3