17.04 - proxychains não podem resolver DNS

0

Estou usando o Kubuntu 17.04 e instalei o proxychains , que funcionou como um charme no Kali Linux.

Em /etc/proxychains.conf , comentei a linha que retorna strict_chain e a linha descomentada que retorna dynamic_chain . Todo o resto está em falta.

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

então corri proxychain google-chrome e receberia avisos como:

!!!need more proxies!!!
|DNS-request| www.googleapis.com 
|DNS-response|: clients2.google.com does not exist
|D-chain|-<>-127.0.0.1:9050-<--timeout

Eu também tentei estes:

proxychains curl https://google.com

saída:

ProxyChains-3.1 (http://proxychains.sf.net)
|DNS-request| google.com 
|D-chain|-<>-127.0.0.1:9050-<--timeout

!!!need more proxies!!!

|DNS-response|: google.com does not exist
curl: (6) Could not resolve host: google.com

ou ping;

proxychains ping https://google.com

saída:

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
    
por Kunok 06.12.2017 / 21:41

1 resposta

1

Tanto quanto sei, as proxychains só funcionam com o TOR.

Depois de tentar algumas outras opções que publiquei nos comentários, a solução foi de fato:

sudo apt install tor

Após a instalação do TOR, os proxychains funcionam conforme o esperado.

    
por Panther 07.12.2017 / 23:35