1

I'm having a problem with my kali linux and the proxychains: it outputs following error. It seems it cannot find the reference pointer for the exec or the exec has wrong info.

I have checked the resolv.conf file everything seems to be ok and also the proxychains.conf file seems to be running fine. I've tried multiple dns servers but the same error results.

Anyone has any solution ? Output from the command line:

 root@kali:~# proxychains iceweasel www.google.com
 ProxyChains-3.1 (http://proxychains.sf.net)
 |DNS-request| www.google.com 
 can't exec proxyresolv: No such file or directory
 |DNS-response|: www.google.com is not exist
 |DNS-request| www.google.com 
 can't exec proxyresolv: No such file or directory
 |DNS-response|: www.google.com is not exist
4

2 回答 2

5

有同样的问题,符号链接proxyresolv似乎已被破坏。巧合?我想不是。与最新升级有关。

使固定:

ln -s /usr/lib/proxychains3/proxyresolv /usr/bin/

于 2014-09-08T13:00:15.393 回答
1

我有同样的问题

Linux kali 3.18.0-kali3-586 #1 Debian 3.18.6-1~kali2 (2015-03-02) i686 GNU/Linux

root@kali:~# proxychains msfconsole
ProxyChains-3.1 (http://proxychains.sf.net)
[*] Starting the Metasploit Framework console...-[-] Failed to connect to the database: could not connect to server: Connection refused
    Is the server running on host "localhost" (127.0.0.1) and accepting
    TCP/IP connections on port 5432?

以下是我设法启动并运行它的方法:

  1. 首先确保此符号链接存在:

    ln -s /usr/lib/proxychains3/proxyresolv /usr/bin/
    
  2. 注释掉以下proxy_dns/etc/proxychains.conf

    # Proxy DNS requests - no leak for DNS data
    #proxy_dns
    

我还没有找到正确的方法来proxy_dns启用它。

再次尝试,似乎工作正常。

root@kali:~# proxychains msfconsole
ProxyChains-3.1 (http://proxychains.sf.net)
[*] Starting the Metasploit Framework console...|
# cowsay++
 ____________
< metasploit >
 ------------
       \   ,__,
        \  (oo)____
           (__)    )\
              ||--|| *


Trouble managing data? List, sort, group, tag and search your pentest data
in Metasploit Pro -- learn more on http://rapid7.com/metasploit

       =[ metasploit v4.11.1-2015042001 [core:4.11.1.pre.2015042001 api:1.0.0]]
+ -- --=[ 1445 exploits - 820 auxiliary - 229 post        ]
+ -- --=[ 370 payloads - 37 encoders - 8 nops             ]
+ -- --=[ Free Metasploit Pro trial: http://r-7.co/trymsp ]
于 2015-12-31T04:21:14.803 回答