Tech C**P
Photo
Setup a proxy server by using 
#proxy #switchy_omega #ssh #tunnel #socks
  SwitchyOmega chrome addon. Download and install it from chrome store and setup the credential as picture. Use ssh -D 5300 USERNAME@YOUR_SERVER_IP to proxy your browser traffic (server should be located in Europe or America).#proxy #switchy_omega #ssh #tunnel #socks
How to check whether a socks server working or not?
Let's say you have run a socks server on port 8888. Now in order to test the server, you just need to use
 
If you see some
 
The above error says that port 8888 is not available, you may see different errors based on the server configuration stat. Hope it helps.
#socks5 #socks #socks_server #curl
  Let's say you have run a socks server on port 8888. Now in order to test the server, you just need to use
cURL! You need to provide --socks5 parameter to cURL as below:curl --socks5 localhost:8888 binfalse.de
If you see some
HTML stuff, your server is up & running, but if you see the below error it      seems the server is not working properly:curl: (7) Failed to connect to localhost port 8888: Connection refused
The above error says that port 8888 is not available, you may see different errors based on the server configuration stat. Hope it helps.
#socks5 #socks #socks_server #curl
