https://github.com/songquanpeng/socks5
Yep, another Socks5 proxy server implementation.
https://github.com/songquanpeng/socks5
Last synced: 5 months ago
JSON representation
Yep, another Socks5 proxy server implementation.
- Host: GitHub
- URL: https://github.com/songquanpeng/socks5
- Owner: songquanpeng
- Created: 2021-02-28T07:57:52.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2021-02-28T09:32:59.000Z (over 4 years ago)
- Last Synced: 2025-02-27T02:42:36.240Z (8 months ago)
- Language: Go
- Homepage:
- Size: 6.84 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Socks5
> Yep, another Socks5 proxy server implementation of Go.## Usage
```shell script
# Clone & Build
git clone https://github.com/songquanpeng/socks5
cd socks5
go build# Usage examples:
./socks5.exe
curl -x socks5://localhost:1080 https://baidu.com./socks5.exe -username stan -password pAssW0rd
curl -x socks5://stan:pAssW0rd@localhost:1080 https://baidu.com
```## Reference
1. [RFC: SOCKS Protocol Version 5](https://tools.ietf.org/html/rfc1928)
2. [RFC: Username/Password Authentication for SOCKS V5](https://tools.ietf.org/html/rfc1929)
3. [A small Socks5 Proxy Server in Python3](https://github.com/MisterDaneel/pysoxy)