misc python code

This commit is contained in:
ys
2024-12-20 21:50:09 +00:00
parent 6dc40ba6af
commit d3dc84416d
44 changed files with 24998 additions and 0 deletions

View File

@@ -0,0 +1,9 @@
import mitmproxy.http
class MyAddon:
def request(self, flow: mitmproxy.http.HTTPFlow) -> None:
print(flow.request.url)
addons = [
MyAddon()
]