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