You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Jul 17, 2020. It is now read-only.
At line 300 of mitmAP.py mitmproxy is being called: os.system("sudo mitmproxy -T --host --follow -w " + script_path + "logs/mitmap-proxy.mitmproxy")
However, the parameters have changed:
`usage: mitmproxy [options]
mitmproxy: error: unrecognized arguments: -T --host --follow
-T is deprecated, please use --mode transparent instead
--follow is deprecated.
Please use --set console_focus_follow=value instead.
To show all options and their default values use --options`
Fix (With --host, I cannot find the 'new' parameter for this one): os.system("sudo mitmproxy -m transparent --set console_focus_follow=true -w " + script_path + "logs/mitmap-proxy.mitmproxy")
At line 300 of mitmAP.py mitmproxy is being called:
os.system("sudo mitmproxy -T --host --follow -w " + script_path + "logs/mitmap-proxy.mitmproxy")However, the parameters have changed:
`usage: mitmproxy [options]
mitmproxy: error: unrecognized arguments: -T --host --follow
-T is deprecated, please use --mode transparent instead
--follow is deprecated.
Please use
--set console_focus_follow=valueinstead.To show all options and their default values use --options`
Fix (With --host, I cannot find the 'new' parameter for this one):
os.system("sudo mitmproxy -m transparent --set console_focus_follow=true -w " + script_path + "logs/mitmap-proxy.mitmproxy")