rofl0r / proxychains-ng

proxychains ng (new generation) - a preloader which hooks calls to sockets in dynamically linked programs and redirects it through one or more socks/http proxies. continuation of the unmaintained proxychains project. the sf.net page is currently not updated, use releases from github release page instead.
http://sourceforge.net/projects/proxychains-ng/files
GNU General Public License v2.0
9.82k stars 1.08k forks source link

Q: Is there a way to list the Tor proxies that are being used? #554

Closed ppseprus closed 8 months ago

ppseprus commented 8 months ago

Given the following proxychains configurations:

strict_chain
proxy_dns
# defaults set to "tor"
socks4  127.0.0.1 9050
socks5  127.0.0.1 9050

And I run sudo service tor start, is there a way I could list the actual proxies being used?

rofl0r commented 8 months ago

is there a way I could list the actual proxies being used?

not to my knowledge.

btw, your use of 2 proxies on localhost works only with random_chain and chain_len 1, not with anything else, and makes no sense even with random_chain. just decide upon whether you want to use tor's socks4 or socks5 interface.

ppseprus commented 8 months ago

your use of 2 proxies on localhost works only with random_chain

You are right. I was just switching between configs and wanted to copy here the default setting (strict_chain) and ended up not copying a valid config...

Thanks anyways!