-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathmode.go
215 lines (178 loc) · 5.36 KB
/
mode.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
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
package proxy
import (
"bufio"
"crypto/tls"
"github.com/elazarl/goproxy"
"github.com/inconshreveable/go-vhost"
yaklog "github.com/yaklang/yaklang/common/log"
"net"
"net/http"
"strings"
)
type Mode interface {
HandleConnect(client net.Conn, h *HttpProxy, ctx *Context) (err error)
}
type Manual struct{}
func (m *Manual) HandleConnect(client net.Conn, h *HttpProxy, ctx *Context) (err error) {
ctx.Request, err = http.ReadRequest(bufio.NewReader(client))
if err != nil {
yaklog.Errorf("%s read http request failed - %v", ctx.Preffix(), err)
return err
}
ctx.Request.URL.Scheme, ctx.Protocol = "http", "HTTP"
ctx.RemoteHost, ctx.RemotePort, err = net.SplitHostPort(ctx.Request.Host)
if err != nil {
if strings.Contains(err.Error(), "missing port in address") {
ctx.RemoteHost, ctx.RemotePort = ctx.Request.Host, "80"
} else {
yaklog.Errorf("%s split remote host failed - %v", ctx.Preffix(), err)
return err
}
}
if ctx.Request.Method == http.MethodConnect {
ctx.IsTLS, ctx.Request.URL.Scheme, ctx.Protocol = true, "https", "HTTPS"
if _, err = client.Write([]byte("HTTP/1.1 200 Connection established\r\n\r\n")); err != nil {
yaklog.Errorf("%s write http response failed - %v", ctx.Preffix(), err)
return err
}
subConf := goproxy.NewProxyHttpServer()
//proxyConf.Tr.DisableCompression = true
tlsConfig, err := goproxy.TLSConfigFromCA(&tls.Certificate{
Certificate: [][]byte{h.Cert.Raw},
PrivateKey: h.Key,
})(ctx.RemoteHost, &goproxy.ProxyCtx{
Proxy: subConf,
})
client = tls.Server(client, tlsConfig)
ctx.Request, err = http.ReadRequest(bufio.NewReader(client))
if err != nil {
yaklog.Errorf("%s read https request failed - %v", ctx.Preffix(), err)
return err
}
}
if ctx.Request.Header.Get("Upgrade") == "websocket" {
_ = h.handleWebSocket(client, ctx)
} else {
_ = h.handleHttp(client, ctx)
}
return nil
}
var HttpMethod = map[string]struct{}{
http.MethodGet[:3]: {},
http.MethodHead[:3]: {},
http.MethodPost[:3]: {},
http.MethodPut[:3]: {},
http.MethodPatch[:3]: {},
http.MethodConnect[:3]: {},
http.MethodDelete[:3]: {},
http.MethodOptions[:3]: {},
http.MethodTrace[:3]: {},
}
type Transparent struct{}
func (t *Transparent) HandleConnect(client net.Conn, h *HttpProxy, ctx *Context) (err error) {
ctx.Request, err = http.ReadRequest(bufio.NewReader(client))
if err != nil {
yaklog.Errorf("%s read http connect request failed - %v", ctx.Preffix(), err)
return err
}
if ctx.Request.Method == http.MethodConnect {
if _, err = client.Write([]byte("HTTP/1.1 200 Connection established\r\n\r\n")); err != nil {
yaklog.Errorf("%s write http connect response failed - %v", ctx.Preffix(), err)
return err
}
}
ctx.RemoteHost, ctx.RemotePort, err = net.SplitHostPort(ctx.Request.Host)
if err != nil {
if strings.Contains(err.Error(), "missing port in address") {
ctx.RemoteHost, ctx.RemotePort = ctx.Request.Host, "80"
} else {
yaklog.Errorf("%s split remote host failed - %v", ctx.Preffix(), err)
return err
}
}
remoteIp := ctx.RemoteHost
ioClient, buf := NewConn(client), make([]byte, 3)
if _, err = ioClient.Reader.Read(buf); err != nil {
yaklog.Errorf("%s peek buf failed - %v", ctx.Preffix(), err)
return err
}
if buf[0] == 0x16 {
ctx.IsTLS, ctx.Protocol = true, "TLS"
var (
vhostClient *vhost.TLSConn
fqdn string
servName string
)
if IsDomain(remoteIp) {
fqdn = remoteIp
} else {
if host, ok := NsLookup.Load(remoteIp); ok {
fqdn = host.(string)
} else {
vhostClient, err = vhost.TLS(ioClient)
if err != nil {
yaklog.Errorf("%s parse client hello failed - %v", ctx.Preffix(), err)
return err
}
fqdn = vhostClient.Host()
}
}
if fqdn != "" {
if host, ok := ServName.Load(fqdn); ok {
servName = host.(string)
} else {
servName = fetchDNS(fqdn, ctx.RemotePort)
}
} else {
servName = h.DefaultSNI
}
ctx.ServName = servName
subConfig := goproxy.NewProxyHttpServer()
tlsConfig, err := goproxy.TLSConfigFromCA(&tls.Certificate{
Certificate: [][]byte{h.Cert.Raw},
PrivateKey: h.Key,
})(servName, &goproxy.ProxyCtx{
Proxy: subConfig,
})
if vhostClient != nil {
ioClient = NewConn(tls.Server(vhostClient, tlsConfig))
} else {
ioClient = NewConn(tls.Server(ioClient, tlsConfig))
}
if _, err = ioClient.Reader.Read(buf); err != nil {
yaklog.Errorf("%s remote server name invalid - %v", ctx.Preffix(), err)
return err
}
}
if _, ok := HttpMethod[string(buf)]; ok {
ctx.Request, err = http.ReadRequest(bufio.NewReader(ioClient))
if err != nil {
yaklog.Errorf("%s read http request failed - %v", ctx.Preffix(), err)
return err
}
ctx.RemoteHost, _, err = net.SplitHostPort(ctx.Request.Host)
if err != nil {
if strings.Contains(err.Error(), "missing port in address") {
ctx.RemoteHost = ctx.Request.Host
}
}
if ctx.IsTLS {
if _, ok = NsLookup.Load(remoteIp); !ok && !IsDomain(remoteIp) {
NsLookup.Store(remoteIp, ctx.RemoteHost)
}
if _, ok = ServName.Load(ctx.RemoteHost); !ok {
ServName.Store(ctx.RemoteHost, ctx.ServName)
}
}
if ctx.Request.Header.Get("Upgrade") == "websocket" {
_ = h.handleWebSocket(ioClient, ctx)
} else {
ctx.Protocol, ctx.Request.URL.Scheme = "HTTP", "http"
_ = h.handleHttp(ioClient, ctx)
}
} else {
ctx.RemoteHost = remoteIp
_ = h.handleTCP(ioClient, ctx)
}
return nil
}