firejail defeats proxychains
Author: tredondoCreated Nov 20, 2021Updated Jan 2, 2024
Labelsdocu
I have proxychains configured with socks5 10.8.0.1 1080.
This works as expected - wget goes through the proxy:
$ proxychains wget -q github.com
[proxychains] config file found: /etc/proxychains4.conf
[proxychains] preloading /usr/lib/x86_64-linux-gnu/libproxychains.so.4
[proxychains] DLL init: proxychains-ng 4.14
[proxychains] Strict chain ... 10.8.0.1:1080 ... github.com:443 ... OKBut by putting firejail in front of wget, it fetches the file, and proxychains doesn't log anything!
$ proxychains firejail wget -q github.com
[proxychains] config file found: /etc/proxychains4.conf
[proxychains] preloading /usr/lib/x86_64-linux-gnu/libproxychains.so.4Is that expected? I do see a warning in the README but I can't tell how this applies to firejail.
this program works only on dynamically linked programs. also both proxychains and the program to call must use the same dynamic linker (i.e. same libc)
Source: haad/proxychains