rofl0r

Results 896 comments of rofl0r

i dunno, what's the output of proxychains when you run your script ? does it use UDP? is php binary statically linked?

run ``` file `which php` ``` and paste output

can you paste the strace output of running php directly on your script ? `strace -f -o log php my.php` then remove credentials and other secrets from "log".

first connection is done via UDP (SOCK_DGRAM) so it's expected it doesn't work: > 9425 socket(PF_INET, SOCK_DGRAM|SOCK_NONBLOCK, IPPROTO_IP) = 3 > 9425 connect(3, {sa_family=AF_INET, sin_port=htons(53), sin_addr=inet_addr("213.186.33.99")}, 16) = 0 however...

turned out that php built for e.g. ubuntu, if it uses raw sockets like in this small example: ```php ``` somehow ends up calling glibc's `__libc_connect` directly instead of calling...

you could compile your own php, for example.

> as suggested by irssi can you elaborate on that ? > server closed connection unexpectedly i don't think this is due to proxychains, but due to the used proxy.

interesting. does it work when you connect to the IRC network with profixied netcat, or another proxified IRC app like hexchat ?

i've seen a couple bug reports mentioning nordvpn in specific, i suspect their socks gateway software does something particular that's currently not compatible with proxychains. would you mind mentioning in...

have you been able to contact nordvpn in this context, @d3spwn ?