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