2016-07-22 23:57:31 +00:00
|
|
|
# This scripts demonstrates how to use mitmproxy's filter pattern in scripts.
|
2016-09-29 10:46:56 +00:00
|
|
|
# Usage: mitmdump -s "filter.py FILTER"
|
2016-06-14 01:17:09 +00:00
|
|
|
import sys
|
2016-09-29 10:46:56 +00:00
|
|
|
from mitmproxy import filter
|
2015-04-07 22:21:49 +00:00
|
|
|
|
2016-07-22 23:57:31 +00:00
|
|
|
|
|
|
|
class Filter:
|
|
|
|
def __init__(self, spec):
|
2016-09-29 10:46:56 +00:00
|
|
|
self.filter = filter.parse(spec)
|
2016-07-22 23:57:31 +00:00
|
|
|
|
|
|
|
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'")
|
2016-07-22 23:57:31 +00:00
|
|
|
return Filter(sys.argv[1])
|