-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathdetectProxy.go
193 lines (180 loc) · 4.79 KB
/
detectProxy.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
package go_utils
import (
"context"
"crypto/tls"
"fmt"
kcp "github.com/xtaci/kcp-go"
"log"
"net"
"net/http"
"net/url"
"sync"
"time"
)
/*
https://raw.githubusercontent.com/jetkai/proxy-list/main/online-proxies/json/proxies.json
https://raw.githubusercontent.com/mertguvencli/http-proxy-list/main/proxy-list/data-with-geolocation.json
https://www.freeproxy.world/?type=socks5&anonymity=4&country=&speed=&port=&page=1
https://www.proxy-list.download/SOCKS5
https://www.proxy-list.download/SOCKS5
https://list.proxylistplus.com/Socks-List-1
https://list.proxylistplus.com/Socks-List-2
http://proxydb.net/?protocol=https&protocol=socks5&anonlvl=2&anonlvl=4&country=
https://www.socks-proxy.net
*/
const TimeOut = 5 * time.Second
type CheckFunc func(szIp, szPort string, ctx context.Context, bOk chan bool, wg *sync.WaitGroup)
func GetConn(szIp, szPort string, ctx context.Context) (conn net.Conn, err error) {
dialer := &net.Dialer{
Timeout: TimeOut,
KeepAlive: 0,
DualStack: true,
Cancel: ctx.Done(),
}
conn, err = dialer.DialContext(ctx, "tcp", net.JoinHostPort(szIp, szPort))
return
}
// Check for KCP server
func CheckKcp(szIp, szPort string, ctx context.Context, bOk chan bool, wg *sync.WaitGroup) {
defer wg.Done()
conn, err := kcp.Dial(szIp + ":" + szPort)
if err == nil {
defer conn.Close()
log.Println("found kcp")
bOk <- true
}
bOk <- false
}
func CheckHttsProxy(szIp, szPort string, ctx context.Context, bOk chan bool, wg *sync.WaitGroup) {
defer wg.Done()
// 发送 CONNECT 请求并尝试建立 TLS 连接
config := &tls.Config{InsecureSkipVerify: true}
client := &http.Client{
Transport: &http.Transport{
Proxy: http.ProxyURL(&url.URL{
Host: net.JoinHostPort(szIp, szPort),
}),
TLSClientConfig: config,
},
Timeout: TimeOut,
}
req, err := http.NewRequestWithContext(ctx, "CONNECT", "https://www.google.com", nil)
if err != nil {
fmt.Printf("HTTP request error: %s\n", err.Error())
bOk <- false
return
}
resp, err := client.Do(req)
if err != nil {
fmt.Printf("HTTP response error: %s\n", err.Error())
bOk <- false
return
}
defer resp.Body.Close()
// 检查响应状态码,如果是 200,则说明存在 HTTPS 代理服务
if resp.StatusCode == 200 {
bOk <- true
}
bOk <- false
}
// Check for HTTP proxy
func CheckHttProxy(szIp, szPort string, ctx context.Context, bOk chan bool, wg *sync.WaitGroup) {
defer wg.Done()
conn, err := GetConn(szIp, szPort, ctx)
if err == nil {
defer conn.Close()
fmt.Fprintf(conn, "GET / HTTP/1.0\r\n\r\n")
buf := make([]byte, 100)
_, err := conn.Read(buf)
if err == nil {
log.Println("found http proxy")
bOk <- true
}
}
bOk <- false
}
// Check for socks5 proxy
func CheckSocks5Proxy(szIp, szPort string, ctx context.Context, bOk chan bool, wg *sync.WaitGroup) {
defer wg.Done()
conn, err := GetConn(szIp, szPort, ctx)
if err == nil {
defer conn.Close()
// Send SOCKS5 handshake request
buf := []byte{0x05, 0x01, 0x00}
_, err := conn.Write(buf)
if err == nil {
_, err := conn.Read(buf)
if err == nil && buf[1] == 0 {
log.Println("found socks5 proxy")
bOk <- true
}
}
}
bOk <- false
}
// Check for sockss proxy
func CheckSocks4Proxy(szIp, szPort string, ctx context.Context, bOk chan bool, wg *sync.WaitGroup) {
defer wg.Done()
conn, err := GetConn(szIp, szPort, ctx)
if err == nil {
defer conn.Close()
// Send SOCKS4 handshake request
buf := make([]byte, 9)
ip := net.ParseIP(szIp)
buf[0] = 0x04 // Version
buf[1] = 0x01 // Command (1 = establish a TCP/IP stream connection)
buf[2] = byte(80 >> 8) // Destination port high byte
buf[3] = byte(80) // Destination port low byte
buf[4] = ip[0] // Destination IP address first octet
buf[5] = ip[1] // Destination IP address second octet
buf[6] = ip[2] // Destination IP address third octet
buf[7] = ip[3] // Destination IP address fourth octet
buf[8] = 0x00 // Null terminator for user ID
_, err := conn.Write(buf)
if err == nil {
buf := make([]byte, 8)
_, err := conn.Read(buf)
if err == nil && buf[1] == 0x5a {
log.Println("found socks4 proxy")
bOk <- true
}
}
}
bOk <- false
}
/*
detect http、socks5 proxy
*/
func DetectProxy(szIp, szPort string) bool {
var wg sync.WaitGroup
var bOk = make(chan bool, 1)
var aX = []CheckFunc{CheckHttProxy, CheckHttsProxy, CheckSocks5Proxy, CheckSocks4Proxy} // , CheckKcp
ctx, cancel := context.WithCancel(context.Background())
defer cancel()
n := len(aX)
wg.Add(n)
var bRst = false
go func() {
for {
select {
case bOk1 := <-bOk:
n--
if bOk1 {
bRst = true
cancel()
return
}
if 0 >= n {
cancel()
return
}
}
time.Sleep(16 * time.Millisecond)
}
}()
for _, x := range aX {
go x(szIp, szPort, ctx, bOk, &wg)
}
wg.Wait()
return bRst
}