SOCKS BIND Client Example
A simple CLI client example demonstrating how to use socksgo's BIND command to create a listening port through a SOCKS proxy.
Usage
go run . [options]
Options
-proxy: SOCKS proxy URL (default: socks5://127.0.0.1:1080)
Examples
Basic SOCKS5 BIND
# Start a listener through local SOCKS5 proxy
go run . -proxy socks5://localhost:1080
Then in another terminal:
curl http://<listener-address>
With Authentication
go run . -proxy socks5://user:pass@localhost:1080