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"
|
|
|
|
|
2016-02-16 19:49:10 +00:00
|
|
|
from mitmproxy import filt
|
2015-04-07 22:21:49 +00:00
|
|
|
|
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)
|