-
Notifications
You must be signed in to change notification settings - Fork 7
/
go-socks5-server.go
68 lines (54 loc) · 1.11 KB
/
go-socks5-server.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package main
import (
"encoding/json"
"fmt"
"os"
"net"
"flag"
"github.com/pragus/go-socks5"
)
const CFG = "/etc/go-socks5-server.config.json"
type Config struct {
Ip string
Port string
Credentials []Credentials
}
type Credentials struct {
User string
Pass string
}
func main() {
path := flag.String("config", CFG, "config file path")
flag.Parse()
file, err := os.Open(*path)
defer file.Close()
if err != nil {
panic(err)
}
decoder := json.NewDecoder(file)
configuration := Config{}
err = decoder.Decode(&configuration)
if err != nil {
panic(err)
}
creds := socks5.StaticCredentials{}
for _, c := range configuration.Credentials {
creds[c.User] = c.Pass
}
conf := &socks5.Config{
AuthMethods: []socks5.Authenticator{
socks5.UserPassAuthenticator{
Credentials: creds,
},
},
}
server, err := socks5.New(conf)
if err != nil {
panic(err)
}
fmt.Println(fmt.Sprintf("Starting server on: %s:%s",configuration.Ip, configuration.Port));
if err := server.ListenAndServe("tcp", net.JoinHostPort(configuration.Ip, configuration.Port));
err != nil {
panic(err)
}
}