mitmproxy/examples/flowfilter.py

21 lines
506 B
Python
Raw Normal View History

# This scripts demonstrates how to use mitmproxy's filter pattern in scripts.
# Usage: mitmdump -s "filter.py FILTER"
2016-06-14 01:17:09 +00:00
import sys
from mitmproxy import filter
2015-04-07 22:21:49 +00:00
class Filter:
def __init__(self, spec):
self.filter = filter.parse(spec)
def response(self, flow):
if flow.match(self.filter):
print("Flow matches filter:")
print(flow)
2015-05-30 00:03:28 +00:00
2016-07-08 01:37:33 +00:00
def start():
2016-06-14 01:17:09 +00:00
if len(sys.argv) != 2:
2015-05-30 00:03:28 +00:00
raise ValueError("Usage: -s 'filt.py FILTER'")
return Filter(sys.argv[1])