Mac下ProxyChains Tor实现代理




背景:通过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,

或者/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转发的过程。进到服务器后,输入last或who命令进行查看,你会看到你的真实IP被隐藏了!

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

备注
在使用proxychains4的时候,shell里不要设置http_proxy和htts_proxy,即不要启动Privoxy的http代理功能,否则会打乱这个回路.
——————— 
作者:yanzi1225627 
来源:CSDN 
原文:https://blog.csdn.net/yanzi1225627/article/details/51285091 
版权声明:本文为博主原创文章,转载请附上博文链接!

 

 

 

proxychains4 open -a /Applications/Google\ Chrome.app

proxychains4 curl cip.cc

发布了86 篇原创文章 ·
获赞 54 ·
访问量 13万+