rofl0r

Results 896 comments of rofl0r

when you look at a packet that is actually going out the WAN interface (using wireshark/tcpdump), it's probably an ordinary TCP packet, which contains inside of it a fake ethernet...

yes, you write a script that resolves the host and then creates a proxychains.conf from a template like this: ```sh #!/bin/sh # proxychains wrapper PROXY_DNS=foobar.com PROXY_PORT=1080 PROXY_IP=$(host $PROXY_DNS | tail...

did you pass parameters ? usage is like `sh script.sh curl ifconfig.me` if it still doesn't work use `sh -x` instead of `sh` and paste the output here

@Justsoos see above, i fixed the host command, should work now (i wrote the above script "blind", without ever running it)

@Justsoos fixed. can you confirm it works now ?

it worked for my socks5 test server with password auth. can you provide me a pcap recording of the transaction (recorded with tcpdump or wireshark)? (you could change user/pass to...

> Why is domain name not directly supported by the proxychains.conf? it's explained in great detail in one of the issues here. please post a link when you find it.

> It seems like one should be able to modify get_chain_data to add a case for count == 1 where we call true_gethostbyname to resolve it using the libc resolver....

> This is a really hacky patch that works on linux at least, but I'm not confident it's bulletproof. congrats. yes, to know whether it's bulletproof one would have to...