Is there a proxy server for Linux that runs from the console, like this:
# light-proxy --port=3128 --log proxy.log And after this command, he simply listened to all requests from port 3128 to the proxy.log file. If so, tell me what is called.
Is there a proxy server for Linux that runs from the console, like this:
# light-proxy --port=3128 --log proxy.log And after this command, he simply listened to all requests from port 3128 to the proxy.log file. If so, tell me what is called.
Lots of options:
apt-cache search http proxy | grep proxy And from them choose everything that has in the name micro, light, tiny, tidy, small
I was satisfied with micro-proxy
There is https://mitmproxy.org/ , which conveniently displays all http sessions with the ability to view requests and responses. For debugging or viewing http-traffic - the most it.
Source: https://ru.stackoverflow.com/questions/413118/
All Articles