Last active
February 28, 2025 06:37
-
-
Save lene/a517e635de86e73f6a981b0b584fb68a to your computer and use it in GitHub Desktop.
Using tor as SOCKS proxy with SOCAT
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
socat TCP-LISTEN:<localport> SOCKS4A:localhost:<host>:<remoteport>,socksport=9050 | |
# for example, to ssh into secret.shell.server.org via tor, do: | |
$ socat TCP-LISTEN:22222 SOCKS4A:localhost:secret.shell.server.org:22,socksport=9050 & | |
$ ssh localhost -p 22222 |
tbh I don't remember. Give SOCKS5 a try, and if it works, great!
https://github.com/runsisi/socat
"socat with socks5 support (official socat release does not support socks5 proxy)"
Alright.
master branch supports it, but there's no release. build from source.
Yes, I download the source code from 'http://www.dest-unreach.org/socat/download/socat-1.8.0.3.tar.gz',
then build it on my Apple M1 pro (macOS 15.3.1 ), it works fine with socks5 proxy.
The cli:
./socat TCP-LISTEN:11111 SOCKS5:my-socks5-proxy:the-target-host:22,socksport=1081 &
ssh -p 11111 ssh-user@localhost
Also it can works together with SSH config 'ProxyCommand' option:
ProxyCommand socat - SOCKS5:my-socks5-proxy:%h:%p,socksport=1081
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
why SOCKS 4?