Using connect.c to SSH through a SOCKS server
connect.c is a simple relaying command to make network connections via SOCKS and https proxies. It is mainly intended to be used as a proxy command for SSH.
You can download a copy and compile it using the command gcc -o connect connect.c , however you might find if you are using Mac OSX that it doesn’t compile properly, that’s because you need to make a couple of changes. You need to find the #include <resolv.h> line and change it to #include <resolv8_compat.h> and above it add #define MAXDNAME 2048.
Click to continue reading “Using connect.c to SSH through a SOCKS server”
