mitmproxy/examples/flowfilter.py

22 lines
531 B
Python
Raw Normal View History

# This scripts demonstrates how to use mitmproxy's filter pattern in scripts.
2016-10-01 10:44:17 +00:00
# Usage: mitmdump -s "flowfilter.py FILTER"
2016-06-14 01:17:09 +00:00
import sys
2016-10-01 10:44:17 +00:00
from mitmproxy import flowfilter
2015-04-07 22:21:49 +00:00
class Filter:
def __init__(self, spec):
2016-10-01 10:44:17 +00:00
self.filter = flowfilter.parse(spec)
def response(self, flow):
2016-10-01 10:44:17 +00:00
if flowfilter.match(flow, 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])