Closed jeff-an closed 1 year ago
I was able to create a minimal reproduction with the ubuntu:18.04
docker image, node version v14.10.0
, and the node-fetch@2
module for making the actual HTTP request.
please try whether current master fixes it, if not, paste output from a debug build (CFLAGS=-DDEBUG ./configure
)
master
works, thanks for the fast fix!
When running proxychains on a NodeJS program that queries a non-existent DNS name, I get the following error:
This crashes the program entirely (the expected behavior is just to accept that there is no host name and continue).
I've tested this on proxychains 4.15 and 4.16 with the same result. I compiled on a ubuntu buster docker image with
build-essential
installed../configure && make && make install
completely successfully and I can runproxychains4 curl google.com
successfully.BTW, i'm using
query_dns_old
because I need to add the+search
option todig
in order to resolve some domain names in my Kubernetes environment. Thequery_dns
option does not seem to have this capability or respect the configuration in/etc/resolv.conf
.The issue seems very similar to github.com/rofl0r/proxychains-ng/issues/343. Any help would be appreciated!