mitmproxy/examples/addons/http-add-header.py

16 lines
256 B
Python
Raw Normal View History

"""Add an HTTP header to each response."""
class AddHeader:
def __init__(self):
self.num = 0
def response(self, flow):
self.num = self.num + 1
flow.response.headers["count"] = str(self.num)
addons = [
AddHeader()
]