-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathmain.go
186 lines (158 loc) · 4.28 KB
/
main.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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
package main
import (
"crypto/hmac"
"crypto/rsa"
"crypto/sha256"
"encoding/binary"
"errors"
"log"
"math/rand"
"net"
"os"
"github.com/sirupsen/logrus"
"golang.org/x/crypto/ssh"
)
const appName = "ssh-auth-logger"
var errAuthenticationFailed = errors.New(":)")
var commonFields = logrus.Fields{
"destinationServicename": "sshd",
"product": appName,
}
var logger = logrus.WithFields(commonFields)
var (
sshd_bind string
sshd_key_key string
)
func connLogParameters(conn net.Conn) logrus.Fields {
src, spt, _ := net.SplitHostPort(conn.RemoteAddr().String())
dst, dpt, _ := net.SplitHostPort(conn.LocalAddr().String())
return logrus.Fields{
"src": src,
"spt": spt,
"dst": dst,
"dpt": dpt,
}
}
func logParameters(conn ssh.ConnMetadata) logrus.Fields {
src, spt, _ := net.SplitHostPort(conn.RemoteAddr().String())
dst, dpt, _ := net.SplitHostPort(conn.LocalAddr().String())
return logrus.Fields{
"duser": conn.User(),
//"session_id": string(conn.SessionID()),
"src": src,
"spt": spt,
"dst": dst,
"dpt": dpt,
"client_version": string(conn.ClientVersion()),
"server_version": string(conn.ServerVersion()),
}
}
func authenticatePassword(conn ssh.ConnMetadata, password []byte) (*ssh.Permissions, error) {
fields := logrus.Fields{
"password": string(password),
}
logger.WithFields(logParameters(conn)).WithFields(fields).Info("Request with password")
return nil, errAuthenticationFailed
}
func authenticateKey(conn ssh.ConnMetadata, key ssh.PublicKey) (*ssh.Permissions, error) {
fields := logrus.Fields{
"keytype": key.Type(),
"fingerprint": ssh.FingerprintSHA256(key),
}
logger.WithFields(logParameters(conn)).WithFields(fields).Info("Request with key")
return nil, errAuthenticationFailed
}
func HashToInt64(message, key []byte) int64 {
mac := hmac.New(sha256.New, key)
mac.Write(message)
hash := mac.Sum(nil)
i := binary.LittleEndian.Uint64(hash[:8])
return int64(i)
}
func getHost(addr string) string {
host, _, err := net.SplitHostPort(addr)
if err != nil {
logrus.Fatal(err)
}
return host
}
func getKey(host string) (*rsa.PrivateKey, error) {
logrus.WithFields(logrus.Fields{"addr": host}).Debug("Generating host key")
randomSeed := HashToInt64([]byte(host), []byte(sshd_key_key))
randomSource := rand.New(rand.NewSource(randomSeed))
key, err := rsa.GenerateKey(randomSource, 1024)
if err != nil {
return key, err
}
return key, err
}
var serverVersions = []string{
"SSH-2.0-libssh-0.6.1",
}
func getServerVersion(host string) string {
randomSeed := HashToInt64([]byte(host), []byte(sshd_key_key))
if randomSeed < 0 {
randomSeed = -randomSeed
}
n := int(randomSeed) % len(serverVersions)
return serverVersions[n]
}
func makeSSHConfig(host string) ssh.ServerConfig {
config := ssh.ServerConfig{
PasswordCallback: authenticatePassword,
PublicKeyCallback: authenticateKey,
ServerVersion: getServerVersion(host),
MaxAuthTries: 3,
}
privateKey, err := getKey(host)
if err != nil {
logrus.Panic(err)
}
hostPrivateKeySigner, err := ssh.NewSignerFromKey(privateKey)
if err != nil {
logrus.Panic(err)
}
config.AddHostKey(hostPrivateKeySigner)
return config
}
func handleConnection(conn net.Conn, config *ssh.ServerConfig) {
_, _, _, err := ssh.NewServerConn(conn, config)
if err == nil {
logrus.Panic("Successful login? why!?")
}
}
//getEnvWithDefault returns the environment value for key
//returning fallback instead if it is missing or blank
func getEnvWithDefault(key, fallback string) string {
value := os.Getenv(key)
if value == "" {
return fallback
}
return value
}
func init() {
logrus.SetFormatter(&logrus.JSONFormatter{})
sshd_bind = getEnvWithDefault("SSHD_BIND", ":22")
sshd_key_key = getEnvWithDefault("SSHD_KEY_KEY", "Take me to your leader")
}
func main() {
sshConfigMap := make(map[string]ssh.ServerConfig)
socket, err := net.Listen("tcp", sshd_bind)
if err != nil {
panic(err)
}
for {
conn, err := socket.Accept()
if err != nil {
log.Panic(err)
}
logger.WithFields(connLogParameters(conn)).Info("Connection")
host := getHost(conn.LocalAddr().String())
config, existed := sshConfigMap[host]
if !existed {
config = makeSSHConfig(host)
sshConfigMap[host] = config
}
go handleConnection(conn, &config)
}
}