mirror of
https://github.com/Grasscutters/mitmproxy.git
synced 2024-11-22 15:37:45 +00:00
31 lines
687 B
Python
31 lines
687 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 types
|
|
|
|
|
|
class MyAddon:
|
|
@command.command("myaddon.histogram")
|
|
def histogram(
|
|
self,
|
|
flows: typing.Sequence[flow.Flow],
|
|
path: types.Path,
|
|
) -> None:
|
|
totals = {}
|
|
for f in flows:
|
|
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()
|
|
]
|