Skip to content

PURE GOLANG SOCKS5 SERVER ,FULL PROTOCOL FEATURES!

License

Notifications You must be signed in to change notification settings

bobziuchkovski/socks5-go

 
 

Repository files navigation

socks5-go 🎉

Build Status Go Report Card

Inspired by go-socks5,This package provides full functionality of socks5 protocol.

The protocol described here is designed to provide a framework for client-server applications in both the TCP and UDP domains to conveniently and securely use the services of a network firewall.

Advantages👍

  • A painless host service
  • Support UDP ASSOCIATE (game network accelerator) SSTAP

Feature 🎯

The package has the following features:

  • "No Auth" mode
  • User/Password authentication mode
  • Support for the CONNECT command
  • Support for the BIND command(require the client to accept connections from the server,like FTP etc.)
  • Support for the UDP ASSOCIATE command
  • Unit tests

Download📶

Get the latest version on Release

Start😀

you may need to add run permission first

chmod +x socks5g-linux-amd64

Port only(No Auth)

./socks5g-linux-amd64 1080

Port and Username/Password

./socks5g-linux-amd64 1080 admin 123

Example 👌

go get github.com/realzhangliu/socks5-go
package main

import (
	"github.com/realzhangliu/socks5-go"
	"log"
)

func main() {
	//var config socks5.Config
	//Implement yourself Config , default is provided.
	S5Server := socks5.NewSocks5Server(nil)
	log.Println(S5Server.Listen())
}

About

PURE GOLANG SOCKS5 SERVER ,FULL PROTOCOL FEATURES!

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Go 99.5%
  • Batchfile 0.5%