aboutsummaryrefslogtreecommitdiffstats
path: root/examples/filt.py
blob: cce2a48adf255aade34168909e1e390b0cdbfaee (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# 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)