mirror of
https://github.com/vee1e/mitmproxy.git
synced 2026-09-03 03:07:18 +00:00
External scripts can read a flow, modify it, and then return it to mitmproxy using a simple API. The "|" keyboard shortcut within mitmproxy prompts the user for a script.
5 lines
71 B
Python
Executable file
5 lines
71 B
Python
Executable file
#!/usr/bin/env python
|
|
import sys
|
|
sys.path.insert(0, "..")
|
|
sys.exit(1)
|
|
|