mitmproxy/examples/addons/commands-paths.py
Maximilian Hils 990116b44a update mypy
2021-02-03 23:03:49 +01:00

33 lines
786 B
Python

"""Handle file paths as command arguments."""
import typing
from mitmproxy import command
from mitmproxy import ctx
from mitmproxy import flow
from mitmproxy import http
from mitmproxy import types
class MyAddon:
@command.command("myaddon.histogram")
def histogram(
self,
flows: typing.Sequence[flow.Flow],
path: types.Path,
) -> None:
totals: typing.Dict[str, int] = {}
for f in flows:
if isinstance(f, http.HTTPFlow):
totals[f.request.host] = totals.setdefault(f.request.host, 0) + 1
with open(path, "w+") as fp:
for cnt, dom in sorted([(v, k) for (k, v) in totals.items()]):
fp.write(f"{cnt}: {dom}\n")
ctx.log.alert("done")
addons = [
MyAddon()
]