Mac下ProxyChains Tor实现shell代理,隐藏自己的ssh登陆ip

背景:通过Privoxy可以实现转http代理为socks5,能实现绝大多数shell里的代理转发,如wget curl等。但是对于ssh [email protected]登陆后,隐藏自己的ip却无能为力,本文即用ProxyChains来解决这个问题。

安装

Mac下可以直接输入命令:brew install proxychains-ng进行安装,其配置文件在/usr/local/Cellar/proxychains-ng/4.11/etc下的proxychains.conf,编辑它末尾添加:
socks5 127.0.0.1 9150,然后打开TorBrowser,这样proxychains就会通过9150端口,将请求送给Tor,走Tor来完成。
示例:

proxychains4 wget -O index.html https://check.torproject.org/\?lang\=zh_CN

通过得到的index.html可以清晰判断网络是否走了Tor。

至于开头说的ssh 登陆到一个远程服务器shell,隐藏自己的ip,只需:proxychains4 ssh root@your_ip,可以看到tor转发的过程。进到服务器后,输入lastwho命令进行查看,你会看到你的真实IP被隐藏了!

如果你的前老板欠你钱了,那么你懂的………..

备注

在使用proxychains4的时候,shell里不要设置http_proxyhtts_proxy,即不要启动Privoxy的http代理功能,否则会打乱这个回路.

你可能感兴趣的:(ProxyChain)