January 2019
Intermediate to advanced
520 pages
14h 32m
English
mitmproxy is a good proxy that logs all request and responses, and can work as a transparent proxy, as a SOCKS5 proxy, or as a reverse proxy. This tool is useful when you want to interact with the running application with a browser, but want to record all request and responses of the interaction session. You can get this tool from here: https://mitmproxy.org/.
Install a proxy and start it by forwarding it to the server's ports:
mitmweb --mode reverse:http://localhost:7000 --web-port 7777 --listen-port 7780
As you may already know by talking parameters, we used reverse-proxy mode. It used the 7777 port to provide access to the mitmproxy UI and port 7780 to connect to our application through proxy. In other words, the proxy redirects ...
Read now
Unlock full access