This repository was archived by the owner on Jul 17, 2020. It is now read-only.

Description
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")