rofl0r
rofl0r
so what is that proxyserver? http ? socks5 ? what's its name so we can do some research ?
1. the thing is called NTLM not NTML 2. since i don't have a server to test, i can't implement this feature 3. protocol is described here https://msdn.microsoft.com/en-us/library/dd925287(v=office.12).aspx 4. if...
can you figure out which function it is calling ? you could set breakpoints (with gdb) on the following functions: ``` connect sendto gethostbyname getaddrinfo freeaddrinfo gethostbyaddr getnameinfo ``` and...
good work tracking down the issue! sorry but i dont understand what you mean with: > but I don't know whether other arrival > I also want to use it...
to further investigate what's happening, you can add the following line at line number 737: ``` dprintf(2, "%s\n", name); ``` and tell me what it says (after recompile).
and **t2** has an entry in /etc/hosts, right ?
programs that launch other programs are tricky to deal with. maybe environment variables get cleared. try using export LD_PRELOAD=/path/to/proxychains4.so in the shell previous to running your php script. also proxychains...
i did some tests and the following happens: for the php connect itself, libc.so is used in the ordinary way, everything works as expected. for cul, php dlopen()'s curl.so, which...
yeah, you can use musl libc as a secondary libc, but you need to compile everything involved from source using the provided musl-gcc wrapper, that means zlib, openssl, php, curl,...
the simplest thing in your situation is probably to use the built-in proxy support of curl i.e. adapt your php scripts so that they all use the same proxy than...