我使用的是Kubuntu17.04,我安装了proxychains,它在Kali上很有魅力。
在/etc/proxychains.conf中,我注释了返回strict_chain的行和返回dynamic_chain的未注释行。其他一切都是违约。
dynamic_chain
#
# Dynamic - Each connection will be done via chained proxies
# all proxies chained in the order as they appear in the list
# at least one proxy must be online to play in chain
# (dead proxies are skipped)
# otherwise EINTR is returned to the app
#
#strict_chain然后运行proxychain google-chrome,我会收到如下警告:
!more proxies!
|DNS-request| www.googleapis.com
|DNS-response|: clients2.google.com does not exist
|D-chain|-<>-127.0.0.1:9050-<--timeout我也试过这些:
proxychains curl https://google.com产出:
ProxyChains-3.1 (http://proxychains.sf.net)
|DNS-request| google.com
|D-chain|-<>-127.0.0.1:9050-<--timeout
!more proxies!
|DNS-response|: google.com does not exist
curl: (6) Could not resolve host: google.com或平;
proxychains ping https://google.com产出:
ProxyChains-3.1 (http://proxychains.sf.net)
ERROR: ld.so: object 'libproxychains.so.3' from LD_PRELOAD cannot be preloaded (cannot open shared object file): ignored.
ping: https://google.com: Name or service not known发布于 2017-12-07 22:35:47
据我所知,丙链只适用于TOR。
在尝试了我在评论中发布的其他选项之后,解决方案实际上是:
sudo apt install tor安装TOR后,proxychains按预期工作。
发布于 2020-09-02 21:34:59
对我来说,安装tor并没有完全解决问题,就像在被接受的答案中解释的那样。
安装tor后,需要使用以下命令启动服务:
sudo service tor start您可以使用systemctl启动或停止服务:
示例:
sudo systemctl start tor.service
sudo systemctl stop tor.servicehttps://askubuntu.com/questions/983897
复制相似问题