The simplest possible reverse proxy [closed] The simplest possible reverse proxy [closed] ruby ruby

The simplest possible reverse proxy [closed]


Found http://mitmproxy.org/ !

My use case is covered by:

mitmproxy -p 8080 -P https://remote.site.example.com/

But there's more. It also offers an ncurses UI for showing all requests done, and allows you to inspect them. This makes WireShark unnecessary.

Install with your distro package installer or with easy_install as shown in the question:

virtualenv mitmproxy; cd mitmproxybin/easy_install mitmproxybin/mitmproxy -p 8080 -P https://remote.site.example.com/

Edit:

For mitmproxy version 3, the arguments would be:

mitmproxy -p 8080 --mode reverse:https://remote.site.example.com/