mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-23 00:01:36 +00:00
15 lines
404 B
Python
15 lines
404 B
Python
# This scripts demonstrates how to use mitmproxy's filter pattern in inline scripts.
|
|
# Usage: mitmdump -s "filt.py FILTER"
|
|
|
|
from libmproxy import filt
|
|
|
|
def start(context, argv):
|
|
print argv
|
|
if len(argv) != 2:
|
|
raise ValueError("Usage: -s 'filt.py FILTER'")
|
|
context.filter = filt.parse(argv[1])
|
|
|
|
def response(context, flow):
|
|
if flow.match(context.filter):
|
|
print("Flow matches filter:")
|
|
print(flow) |