fedproxy/vendor/socks5
Jeff Becker a5ae45e0b9
more
2018-08-29 08:25:27 -04:00
..
.gitignore initial 2018-08-29 08:06:07 -04:00
.travis.yml initial 2018-08-29 08:06:07 -04:00
LICENSE initial 2018-08-29 08:06:07 -04:00
README.md initial 2018-08-29 08:06:07 -04:00
auth.go initial 2018-08-29 08:06:07 -04:00
auth_test.go initial 2018-08-29 08:06:07 -04:00
credentials.go initial 2018-08-29 08:06:07 -04:00
credentials_test.go initial 2018-08-29 08:06:07 -04:00
request.go more 2018-08-29 08:25:27 -04:00
request_test.go initial 2018-08-29 08:06:07 -04:00
ruleset.go initial 2018-08-29 08:06:07 -04:00
ruleset_test.go initial 2018-08-29 08:06:07 -04:00
socks5.go more 2018-08-29 08:25:27 -04:00
socks5_test.go initial 2018-08-29 08:06:07 -04:00

README.md

go-socks5 Build Status

Provides the socks5 package that implements a SOCKS5 server. SOCKS (Secure Sockets) is used to route traffic between a client and server through an intermediate proxy layer. This can be used to bypass firewalls or NATs.

Feature

The package has the following features:

  • "No Auth" mode
  • User/Password authentication
  • Support for the CONNECT command
  • Rules to do granular filtering of commands
  • Custom DNS resolution
  • Unit tests

TODO

The package still needs the following:

  • Support for the BIND command
  • Support for the ASSOCIATE command

Example

Below is a simple example of usage

// Create a SOCKS5 server
conf := &socks5.Config{}
server, err := socks5.New(conf)
if err != nil {
  panic(err)
}

// Create SOCKS5 proxy on localhost port 8000
if err := server.ListenAndServe("tcp", "127.0.0.1:8000"); err != nil {
  panic(err)
}