Install ShadowSocks server on Debian 10

To install ShadowSocks server on Debian 10, run apt install -y shadowsocks Create config file vi /etc/shadowsocks/config.json Add following { “server”:”SERVER_IP”, “server_port”:8044, “local_port”:0, “password”:”PASSWOARD_HERE”, “timeout”:600, “method”:”aes-256-cfb” } You can change server_port if required. To enable service, run systemctl enable shadowsocks-server@config To start shadowsocks proxy, run systemctl start shadowsocks-server@config For status/restart systemctl status shadowsocks-server@config systemctl restart … Read more

Reverse proxy

Reverse proxy sit in front of a web server. All traffic come to reverse proxy, then reverse proxy route traffic to one or more backend web servers. Nginx and Vranish are popular software used as reverse proxy. Nginx Reverse proxy https://varnish-cache.org https://traefik.io Haproxy nuster Docker Nginx Proxy Cpanel ReverseProxy Traffic to Docker Container Show Real … Read more

Install Tor on Ubuntu

Tor is a highly anonymous proxy network. Tor is used by sites in dark web as it is almost impossible to find who owns a web site when it is hidden using tor. https://www.torproject.org To install tor on Ubuntu/Debian, run apt install -y tor This will start a sock5 proxy server on your PC on … Read more

proxy

Squid ShadowSocks Tor Reverse proxy proxychains Web Proxy debugging proxy Install mitmproxy proxy OWASP Zed Attack Proxy Project https://www.telerik.com/fiddler https://portswigger.net/burp Charles HTTP proxy

Install shadowsocks on Ubuntu

Install ShadowSocks server on Debian 10install ShadowSocks client in Ubuntu 18.04 On the Server, install shadowsocks with Create config file for server Add Replace SERVER_IP and PASSWORD in above config. Start server with Example Shadowsocks client Shadowsocks have clients for different operating systems. Some are GUI. On Ubuntu, i install CLI version, that is part … Read more