# HG changeset patch # User Hans-G?nter Theisgen # Date 1656599293 -3600 # Node ID e0a3faa23c7bef137d82574e85d54bed18b73dd5 # Parent b6cd62d7f36783afc27844b4130985cac50d61b9 updated proxychains-ng (4.14 -> 4.16) diff -r b6cd62d7f367 -r e0a3faa23c7b proxychains-ng/description.txt --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/proxychains-ng/description.txt Thu Jun 30 15:28:13 2022 +0100 @@ -0,0 +1,11 @@ +ProxyChains is a UNIX program, that hooks network-related libc functions +in DYNAMICALLY LINKED programs via a preloaded DLL (dlsym(), LD_PRELOAD) +and redirects the connections through SOCKS4a/5 or HTTP proxies. +It supports TCP only (no UDP/ICMP etc). + +The way it works is basically a HACK; so it is possible that it doesn't +work with your program, especially when it's a script, or starts +numerous processes like background daemons or uses dlopen() to load +"modules" (bug in glibc dynlinker). +It should work with simple compiled (C/C++) dynamically linked programs +though. diff -r b6cd62d7f367 -r e0a3faa23c7b proxychains-ng/receipt --- a/proxychains-ng/receipt Thu Jun 30 15:07:10 2022 +0100 +++ b/proxychains-ng/receipt Thu Jun 30 15:28:13 2022 +0100 @@ -1,7 +1,7 @@ # SliTaz package receipt. PACKAGE="proxychains-ng" -VERSION="4.14" +VERSION="4.16" CATEGORY="network" SHORT_DESC="Forces any tcp connection made by a client to follow through proxy." MAINTAINER="pascal.bellard@slitaz.org" @@ -27,12 +27,12 @@ --sysconfdir=/etc \ $CONFIGURE_ARGS && make && - make DESTDIR=$DESTDIR install && - make DESTDIR=$DESTDIR install-config + make install DESTDIR=$DESTDIR && + make install-config DESTDIR=$DESTDIR } # Rules to gen a SliTaz package suitable for Tazpkg. genpkg_rules() { - cp -a $install/usr $fs + cp -a $install/usr $fs }