mitmproxy/examples/filt.py

17 lines
422 B
Python
Raw Normal View History

2015-04-07 22:21:49 +00:00
# This scripts demonstrates how to use mitmproxy's filter pattern in inline scripts.
# Usage: mitmdump -s "filt.py FILTER"
from libmproxy import filt
2015-05-30 00:03:28 +00:00
2015-04-07 22:21:49 +00:00
def start(context, argv):
2015-05-30 00:03:28 +00:00
if len(argv) != 2:
raise ValueError("Usage: -s 'filt.py FILTER'")
context.filter = filt.parse(argv[1])
2015-04-07 22:21:49 +00:00
def response(context, flow):
2015-05-30 00:03:28 +00:00
if flow.match(context.filter):
print("Flow matches filter:")
print(flow)