https://github.com/egregors/socks5-server
Simple socks5 server
https://github.com/egregors/socks5-server
docker golang socks5-proxy
Last synced: 10 months ago
JSON representation
Simple socks5 server
- Host: GitHub
- URL: https://github.com/egregors/socks5-server
- Owner: egregors
- License: mit
- Created: 2018-04-12T11:45:38.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2018-04-29T03:29:45.000Z (about 8 years ago)
- Last Synced: 2025-04-02T07:41:21.000Z (about 1 year ago)
- Topics: docker, golang, socks5-proxy
- Language: Go
- Size: 1.06 MB
- Stars: 43
- Watchers: 4
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# socks5-server
Simple socks5 server

[](https://goreportcard.com/report/github.com/Egregors/socks5-server)
# Usage
```
docker run --name s5 -d --restart=always -p 1111:1111 -e "USERS=user1:pass1,user2:pass2" egregors/socks5-server
```
Do not forget to replace usernames and passwords with your (secure) values!
Now you may try to connect to 1111 port of your host.
## Build
```
go build -o s5 .
USERS="user1:pass1" ./s5
```
# Contributing
Bug reports, bug fixes and new features are always welcome.
Please open issues and submit pull requests for any new code.