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-06-14 01:17:09 +00:00
|
|
|
import sys
|
2016-02-16 19:49:10 +00:00
|
|
|
from mitmproxy import filt
|
2015-04-07 22:21:49 +00:00
|
|
|
|
2016-07-08 01:37:33 +00:00
|
|
|
state = {}
|
2015-05-30 00:03:28 +00:00
|
|
|
|
2016-07-08 01:37:33 +00:00
|
|
|
|
2016-07-15 01:22:20 +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-08 01:37:33 +00:00
|
|
|
state["filter"] = filt.parse(sys.argv[1])
|
2015-05-30 00:03:28 +00:00
|
|
|
|
2015-04-07 22:21:49 +00:00
|
|
|
|
2016-07-08 01:37:33 +00:00
|
|
|
def response(flow):
|
|
|
|
if flow.match(state["filter"]):
|
2015-05-30 00:03:28 +00:00
|
|
|
print("Flow matches filter:")
|
|
|
|
print(flow)
|