rofl0r

Results 1019 comments of rofl0r

also check if SOCKFAMILY(*sa) == AF_INET or AF_INET6 ``` c PDEBUG("SOCKFAMILY(*sa) == AF_INET: %d\n", SOCKFAMILY(*sa) == AF_INET); PDEBUG("SOCKFAMILY(*sa) == AF_INET6: %d\n", SOCKFAMILY(*sa) == AF_INET6); ```

would be helpful if openssh's ssh_connect_direct() would print `gai_strerror(ret)` rather than just reporting unspecified failure.

i've pushed new getnameinfo code, maybe it fixes the issue; although it looks very weird that salen is 0, possibly there's some memory corruption going on. also note that this...

from sshconnect.c: ``` switch (hostaddr == NULL ? -1 : hostaddr->sa_family) { case -1: addrlen = 0; break; ``` something called get_hostfile_hostname_ipaddr with hostaddr == NULL, likely the code that...

i don't think this should be closed until the issue is researched more thoroughly by a skilled openbsd user.

your config seems to contain duplicates. also, try proxy_dns_daemon mode

i suspect your distro uses some sort of firefox launcher that unsets LD_PRELOAD as some sort of security thing. you can try `which firefox` `file $(which firefox)` and look into...

from https://ubuntu.com/blog/apps-to-snaps > Snaps are secure, isolated from each other and the host system using technologies such as AppArmor, they are cross-platform, and they are self-contained, allowing a developer to...

are you aware of the fact that proxychains is TCP only ? UDP,IDCMP,raw packets etc are not supported. simple syn-scans and other TCP based scans should work, though.

which nmap version ? does it work if you specify the network interface to use, for example ``` ./proxychains4 -f /tmp/proxychains.conf nmap -Ss 192.168.1.10 -e eth0 ```