-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.go
More file actions
413 lines (366 loc) · 10.1 KB
/
config.go
File metadata and controls
413 lines (366 loc) · 10.1 KB
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
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
package gohpts
import (
"fmt"
"os"
"runtime"
"slices"
"strings"
"github.com/goccy/go-yaml"
)
type Config struct {
// http server
AddrHTTP string
ServerUser string
ServerPass string
CertFile string
KeyFile string
// socks5
SocksProxy []ProxyEntry
SocksProxyChain ProxyChain
// misc
Interface string
ServerConfPath string
IPv6Enabled bool
// transparent proxy
TProxyMode string
TProxy string
TProxyWorkers uint
TProxyUDP string
TProxyUDPWorkers uint
NoHTTP bool
Auto bool
Dump bool
Mark uint
IgnoredPorts string
// logging
Debug bool
JSON bool
LogFilePath string
NoColor bool
AddrPprof string
// sniffing
Sniff bool
SniffLogFile string
Body bool
// spoofing
ARPSpoof string
NDPSpoof string
// DNSFilter filters
DNSFilter DNSFilterLists
// packet capture
Pcap string
}
type ProxyEntry struct {
Address string `yaml:"address"`
Username string `yaml:"username,omitempty"`
Password string `yaml:"password,omitempty"`
}
func (pe ProxyEntry) String() string {
return pe.Address
}
type ProxyChain struct {
Enabled bool `yaml:"enabled"`
Type string `yaml:"type"`
Length int `yaml:"length"`
}
type DNSFilterLists struct {
Enabled bool `yaml:"enabled"`
Whitelist []string `yaml:"whitelist"`
Blacklist []string `yaml:"blacklist"`
BlacklistAll bool `yaml:"blacklist_all"`
Spooflist []string `yaml:"spooflist"`
}
type yamlConfig struct {
Interface string `yaml:"interface"`
IPv6Enabled bool `yaml:"ipv6_enabled"`
HTTPServer struct {
Enabled bool `yaml:"enabled"`
Address string `yaml:"address"`
Username string `yaml:"username"`
Password string `yaml:"password"`
CertFile string `yaml:"cert_file"`
KeyFile string `yaml:"key_file"`
} `yaml:"http_server"`
ProxyList []ProxyEntry `yaml:"proxy_list"`
ProxyChain ProxyChain `yaml:"proxy_chain"`
Logging struct {
Debug bool `yaml:"debug"`
JSON bool `yaml:"json"`
Logfile string `yaml:"logfile"`
Nocolor bool `yaml:"nocolor"`
Pprof string `yaml:"pprof"`
} `yaml:"logging"`
Sniffing struct {
Enabled bool `yaml:"enabled"`
Snifflog string `yaml:"snifflog"`
Body bool `yaml:"body"`
} `yaml:"sniffing"`
TransparentProxy struct {
TCP struct {
Enabled bool `yaml:"enabled"`
Address string `yaml:"address"`
Workers int `yaml:"workers"`
} `yaml:"tcp"`
UDP struct {
Enabled bool `yaml:"enabled"`
Address string `yaml:"address"`
Workers int `yaml:"workers"`
} `yaml:"udp"`
Mode string `yaml:"mode"`
DisableHTTP bool `yaml:"disable_http"`
Auto bool `yaml:"auto"`
DumpRules bool `yaml:"dump_rules"`
IgnoredPorts []int `yaml:"ignored_ports"`
Mark int `yaml:"mark"`
} `yaml:"transparent_proxy"`
Arpspoof struct {
Enabled bool `yaml:"enabled"`
Settings string `yaml:"settings"`
} `yaml:"arpspoof"`
Ndpspoof struct {
Enabled bool `yaml:"enabled"`
Settings string `yaml:"settings"`
} `yaml:"ndpspoof"`
DNSFilter DNSFilterLists `yaml:"dns_filter"`
Pcap struct {
Enabled bool `yaml:"enabled"`
Settings string `yaml:"settings"`
} `yaml:"pcap"`
}
func createConfigFromPath(path string) (*Config, error) {
yamlFile, err := os.ReadFile(expandPath(path))
if err != nil {
return nil, err
}
sconf := yamlConfig{}
err = yaml.Unmarshal(yamlFile, &sconf)
if err != nil {
return nil, err
}
conf := Config{}
if sconf.HTTPServer.Enabled {
conf.AddrHTTP = sconf.HTTPServer.Address
conf.ServerUser = sconf.HTTPServer.Username
conf.ServerPass = sconf.HTTPServer.Password
conf.CertFile = sconf.HTTPServer.CertFile
conf.KeyFile = sconf.HTTPServer.KeyFile
}
conf.SocksProxy = sconf.ProxyList
conf.SocksProxyChain = sconf.ProxyChain
conf.Interface = sconf.Interface
conf.IPv6Enabled = sconf.IPv6Enabled
if sconf.TransparentProxy.TCP.Enabled || sconf.TransparentProxy.UDP.Enabled {
if sconf.TransparentProxy.TCP.Enabled {
conf.TProxy = sconf.TransparentProxy.TCP.Address
conf.TProxyWorkers = uint(sconf.TransparentProxy.TCP.Workers)
}
if sconf.TransparentProxy.UDP.Enabled {
conf.TProxyUDP = sconf.TransparentProxy.UDP.Address
conf.TProxyUDPWorkers = uint(sconf.TransparentProxy.UDP.Workers)
}
conf.TProxyMode = sconf.TransparentProxy.Mode
conf.NoHTTP = sconf.TransparentProxy.DisableHTTP
conf.Auto = sconf.TransparentProxy.Auto
conf.Mark = uint(sconf.TransparentProxy.Mark)
if conf.Auto {
conf.Dump = sconf.TransparentProxy.DumpRules
conf.IgnoredPorts = strings.Trim(strings.Join(strings.Fields(fmt.Sprint(sconf.TransparentProxy.IgnoredPorts)), ","), "[]")
}
}
conf.Debug = sconf.Logging.Debug
conf.JSON = sconf.Logging.JSON
conf.LogFilePath = sconf.Logging.Logfile
conf.NoColor = sconf.Logging.Nocolor
conf.AddrPprof = sconf.Logging.Pprof
if sconf.Sniffing.Enabled {
conf.Sniff = true
conf.SniffLogFile = sconf.Sniffing.Snifflog
conf.Body = sconf.Sniffing.Body
}
if sconf.Arpspoof.Enabled {
conf.ARPSpoof = sconf.Arpspoof.Settings
}
if sconf.Ndpspoof.Enabled {
conf.NDPSpoof = sconf.Ndpspoof.Settings
}
if sconf.DNSFilter.Enabled {
conf.DNSFilter = sconf.DNSFilter
}
if sconf.Pcap.Enabled {
conf.Pcap = sconf.Pcap.Settings
}
return &conf, nil
}
func parseConfig(conf *Config) error {
if len(conf.SocksProxy) == 0 {
conf.SocksProxy = []ProxyEntry{{Address: ""}}
}
if conf.ServerConfPath != "" {
yamlConf, err := createConfigFromPath(conf.ServerConfPath)
if err != nil {
return err
}
conf.ServerConfPath = ""
// if user did not specify http address (from CLI), use address from config or default
if conf.AddrHTTP == "" {
if yamlConf.AddrHTTP == "" {
conf.AddrHTTP = addrHTTP
} else {
conf.AddrHTTP = yamlConf.AddrHTTP
}
}
// the same for all other http settings
if conf.ServerUser == "" {
conf.ServerUser = yamlConf.ServerUser
}
if conf.ServerPass == "" {
conf.ServerPass = yamlConf.ServerPass
}
if conf.CertFile == "" {
conf.CertFile = yamlConf.CertFile
}
if conf.KeyFile == "" {
conf.KeyFile = yamlConf.KeyFile
}
// proxy chain can only be enabled via yaml config (providing socks5 address via cli disables it)
conf.SocksProxyChain.Enabled = false
if conf.SocksProxy[0].Address == "" {
if yamlConf.SocksProxyChain.Enabled && len(yamlConf.SocksProxy) > 0 {
conf.SocksProxy = yamlConf.SocksProxy
conf.SocksProxyChain = yamlConf.SocksProxyChain
} else if len(yamlConf.SocksProxy) > 0 {
// proxychain disabled, use first address from config
conf.SocksProxy = yamlConf.SocksProxy
} else {
// fallback to default address
conf.SocksProxy[0].Address = addrSOCKS
}
}
if conf.Interface == "" {
conf.Interface = yamlConf.Interface
}
if !conf.IPv6Enabled {
conf.IPv6Enabled = yamlConf.IPv6Enabled
}
if !conf.Debug {
conf.Debug = yamlConf.Debug
}
if !conf.JSON {
conf.JSON = yamlConf.JSON
}
if conf.LogFilePath == "" {
conf.LogFilePath = yamlConf.LogFilePath
}
if !conf.NoColor {
conf.NoColor = yamlConf.NoColor
}
if conf.AddrPprof == "" {
conf.AddrPprof = yamlConf.AddrPprof
}
if !conf.Sniff {
conf.Sniff = yamlConf.Sniff
}
if conf.SniffLogFile == "" {
conf.SniffLogFile = yamlConf.SniffLogFile
}
if !conf.Body {
conf.Body = yamlConf.Body
}
if conf.TProxyMode == "" {
conf.TProxyMode = yamlConf.TProxyMode
}
if conf.TProxy == "" {
conf.TProxy = yamlConf.TProxy
}
if conf.TProxyWorkers == 0 {
conf.TProxyWorkers = yamlConf.TProxyWorkers
}
if conf.TProxyUDP == "" {
conf.TProxyUDP = yamlConf.TProxyUDP
}
if conf.TProxyUDPWorkers == 0 {
conf.TProxyUDPWorkers = yamlConf.TProxyUDPWorkers
}
if !conf.NoHTTP {
conf.NoHTTP = yamlConf.NoHTTP
}
if !conf.Auto {
conf.Auto = yamlConf.Auto
}
if !conf.Dump {
conf.Dump = yamlConf.Dump
}
if conf.Mark == 0 {
conf.Mark = yamlConf.Mark
}
if conf.ARPSpoof == "" {
conf.ARPSpoof = yamlConf.ARPSpoof
}
if conf.NDPSpoof == "" {
conf.NDPSpoof = yamlConf.NDPSpoof
}
if conf.Pcap == "" {
conf.Pcap = yamlConf.Pcap
}
if conf.IgnoredPorts == "" {
conf.IgnoredPorts = yamlConf.IgnoredPorts
}
conf.DNSFilter = yamlConf.DNSFilter
} else {
// only set defaults for http and socks
if conf.AddrHTTP == "" {
conf.AddrHTTP = addrHTTP
}
if conf.SocksProxy[0].Address == "" {
conf.SocksProxy[0].Address = addrSOCKS
}
}
if !slices.Contains(SupportedTProxyOS, runtime.GOOS) {
if conf.TProxy != "" {
return fmt.Errorf("option `TProxy` is available only on linux/android systems")
}
if conf.TProxyWorkers > 0 {
return fmt.Errorf("option `TProxyWorkers` is available only on linux/android systems")
}
if conf.TProxyMode != "" {
return fmt.Errorf("option `TProxyMode` is available only on linux/android systems")
}
if conf.TProxyUDP != "" {
return fmt.Errorf("option `TProxyUDP` is available only on linux/android systems")
}
if conf.TProxyUDPWorkers > 0 {
return fmt.Errorf("option `TProxyUDPWorkers` is available only on linux/android systems")
}
if conf.Auto {
return fmt.Errorf("option `Auto` is available only on linux/android systems")
}
if conf.Dump {
return fmt.Errorf("option `Dump` is available only on linux/android systems")
}
if conf.Mark > 0 {
return fmt.Errorf("option `Mark` is available only on linux/android systems")
}
if conf.NoHTTP {
return fmt.Errorf("option `NoHTTP` is available only on linux/android systems")
}
if conf.ARPSpoof != "" {
return fmt.Errorf("option `ARPSpoof` is available only on linux/android systems")
}
if conf.NDPSpoof != "" {
return fmt.Errorf("option `NDPSpoof` is available only on linux/android systems")
}
if conf.Pcap != "" {
return fmt.Errorf("option `Pcap` is available only on linux/android systems")
}
if conf.IgnoredPorts != "" {
return fmt.Errorf("option `IgnoredPorts` is available only on linux/android systems")
}
if conf.DNSFilter.Enabled {
return fmt.Errorf("option `DNSFilter` is available only on linux/android systems")
}
} else if conf.TProxyMode == "" {
conf.TProxy = ""
conf.TProxyUDP = ""
}
return nil
}