-
Notifications
You must be signed in to change notification settings - Fork 4
/
app.go
424 lines (342 loc) · 9.55 KB
/
app.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
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
414
415
416
417
418
419
420
421
422
423
424
package main
import (
"changeme/services/config"
"changeme/services/fingerprintManage"
"changeme/services/mysqldb"
"changeme/services/pocManage"
"changeme/services/pocScan"
"changeme/services/publicCode"
"changeme/services/tools"
"context"
"github.com/wailsapp/wails/v2/pkg/runtime"
"strconv"
"strings"
"sync"
"time"
)
// App struct
type App struct {
ctx context.Context
}
// NewApp creates a new App application struct
func NewApp() *App {
return &App{}
}
// startup is called when the app starts. The context is saved,
// so we can call the runtime methods
func (a *App) startup(ctx context.Context) {
a.ctx = ctx
}
func (a *App) PocList(key string) []publicCode.Poc {
var pocs []publicCode.Poc
//if publicCode.OnlyLocalLoading {
// pocs = publicCode.PocFileList(key)
//} else {
pocs = pocManage.PocObjects(key)
//}
return pocs
}
func (a *App) PocList2(key string) []publicCode.Poc {
pocs := publicCode.PocFileList(key)
return pocs
}
func (a *App) LocalList(key string) []publicCode.Poc {
var pocs []publicCode.Poc
if publicCode.LocalLoading {
pocs = publicCode.PocFileList(key)
}
return pocs
}
func (a *App) AddPoc(poc publicCode.Poc) []string {
status, msg := pocManage.SavePoc(poc)
var result []string
result = append(result, strconv.Itoa(status), msg)
return result
}
func (a *App) DelPoc(pocs []publicCode.Poc) []string {
status, msg := pocManage.RemovePoc(pocs)
var result []string
result = append(result, strconv.Itoa(status), msg)
return result
}
func (a *App) DelPocFile(pocs []publicCode.Poc) []string {
status, msg := pocManage.RemovePocFile(pocs)
var result []string
result = append(result, strconv.Itoa(status), msg)
return result
}
func (a *App) PocScan(pocs []publicCode.Poc, url string) {
PocChanStart := make(chan string)
PocChanEnd := make(chan int)
url = strings.TrimRight(url, "/")
if !strings.Contains(url, "http") {
url = "http://" + url
}
go func() {
pocScan.PocEzScan(pocs, url, PocChanStart, PocChanEnd)
}()
go func() {
for true {
go func() {
end := <-PocChanEnd
if end == 1 {
return
}
}()
msg := <-PocChanStart
runtime.EventsEmit(a.ctx, "PocScan", msg)
}
}()
}
func (a *App) PocExploitation(poc publicCode.Poc, url string) {
PocChanStart := make(chan string)
PocChanEnd := make(chan int)
url = strings.TrimRight(url, "/")
if !strings.Contains(url, "http") {
url = "http://" + url
}
go func() {
pocScan.ExploitationScan(poc, url, PocChanStart, PocChanEnd)
}()
go func() {
for true {
go func() {
end := <-PocChanEnd
if end == 1 {
return
}
}()
msg := <-PocChanStart
runtime.EventsEmit(a.ctx, "ExploitationScan", msg)
}
}()
}
func (a *App) SaveSetting(setting publicCode.AllSetting, dbChange int) []string {
status, msg := config.SettingSave(setting, dbChange)
var result []string
result = append(result, strconv.Itoa(status), msg)
return result
}
func (a *App) ShowSetting() publicCode.AllSetting {
return config.SettingShow()
}
func (a *App) DBInitialize() []string {
status, msg := mysqldb.InitializeDB()
var result []string
result = append(result, strconv.Itoa(status), msg)
return result
}
func (a *App) BatchPocScan() publicCode.PocScanResult {
var msg publicCode.PocScanResult
runtime.EventsEmit(a.ctx, "BatchScan", msg)
return msg
}
func (a *App) ScanBatch(URLS string, pocs []publicCode.Poc) {
pocScan.ScanResultChan = make(chan publicCode.PocScanResult)
pocScan.ScanEndChan = make(chan int)
pocScan.ScanPauseChan = make(chan int)
pocScan.ScanPauseChan2 = make(chan int, 2)
pocScan.ScanProgressChan = make(chan int, publicCode.TimeOut-1)
urls := strings.Split(URLS, "\n")
go func() {
//if len(pocs) < publicCode.ThreadNum {
// pocScan.BatchScan2(urls, pocs)
//} else {
// pocScan.BatchScan1(urls, pocs)
//}
pocScan.BatchScan2(urls, pocs)
}()
num := 0
go func() {
for true {
select {
case end := <-pocScan.ScanEndChan:
if end == 1 {
time.Sleep(1 * time.Second)
runtime.EventsEmit(a.ctx, "BatchScanProgress", 100)
return
}
if end == 2 {
//err := "[*] 扫描已取消!"
//runtime.EventsEmit(a.ctx, "BatchScan", err)
return
}
case msg := <-pocScan.ScanResultChan:
runtime.EventsEmit(a.ctx, "BatchScan", msg)
case p := <-pocScan.ScanProgressChan:
num = num + p
progress := num * 100 / (len(urls) * len(pocs))
runtime.EventsEmit(a.ctx, "BatchScanProgress", progress)
case <-pocScan.ScanPauseChan:
<-pocScan.ScanPauseChan2
}
}
}()
}
func (a *App) ScanPause() {
pocScan.ScanPauseChan <- 1
}
func (a *App) ScanContinue() {
pocScan.ScanPauseChan2 <- 1
}
func (a *App) ScanClose() {
pocScan.ScanPauseChan2 <- 1
pocScan.ScanEndChan <- 2
}
func (a *App) PocsDownload(pocs []publicCode.Poc) []string {
status, msg := pocManage.DownLoadPocs(pocs)
var result []string
result = append(result, strconv.Itoa(status), msg)
return result
}
func (a *App) PocsUpload(pocs []publicCode.Poc) []string {
status, msg := pocManage.UploadPocs(pocs)
var result []string
result = append(result, strconv.Itoa(status), msg)
return result
}
func (a *App) BackgroundSetting() string {
return publicCode.BackgroundImage
//status, msg := config.BackgroundImageCreat(image)
//var result []string
//result = append(result, strconv.Itoa(status), msg)
//return result
}
func (a *App) BackgroundImageSave(image publicCode.Background) {
config.BackgroundSave(image)
}
func (a *App) FingerprintList(key string) []publicCode.Fingerprint {
var fingerprints []publicCode.Fingerprint
//if publicCode.OnlyLocalLoading {
// fingerprints = publicCode.FingerprintFileList(key)
//} else {
fingerprints = fingerprintManage.FingerprintsList(key)
//}
return fingerprints
}
func (a *App) FingerprintFileList(key string) []publicCode.Fingerprint {
fingerprints := fingerprintManage.UploadFingerprintsList(key)
return fingerprints
}
func (a *App) FingerprintLocalList(key string) []publicCode.Fingerprint {
var fingerprints []publicCode.Fingerprint
if publicCode.LocalLoading {
fingerprints = publicCode.FingerprintFileList(key)
}
return fingerprints
}
func (a *App) AddFingerprint(fingerprint publicCode.Fingerprint) []string {
status, msg := fingerprintManage.SaveFingerprint(fingerprint)
var result []string
result = append(result, strconv.Itoa(status), msg)
return result
}
func (a *App) DelFingerprint(fingerprints []publicCode.Fingerprint) []string {
status, msg := fingerprintManage.RemoveFingerprint(fingerprints)
var result []string
result = append(result, strconv.Itoa(status), msg)
return result
}
func (a *App) DelFingerprintFile(fingerprints []publicCode.Fingerprint) []string {
status, msg := fingerprintManage.RemoveFingerprintFile(fingerprints)
var result []string
result = append(result, strconv.Itoa(status), msg)
return result
}
func (a *App) FingerprintsDownload(fingerprints []publicCode.Fingerprint) []string {
status, msg := fingerprintManage.DownLoadFingerprintS(fingerprints)
var result []string
result = append(result, strconv.Itoa(status), msg)
return result
}
func (a *App) FingerprintsUpload(fingerprints []publicCode.Fingerprint) []string {
status, msg := fingerprintManage.UploadFingerprints(fingerprints)
var result []string
result = append(result, strconv.Itoa(status), msg)
return result
}
func (a *App) FingerprintScan() publicCode.FingerprintScanResult {
var msg publicCode.FingerprintScanResult
runtime.EventsEmit(a.ctx, "FingerprintScan", msg)
return msg
}
func (a *App) FSScan(URLStr string, linkPoc bool, isEasyScan bool) {
pocScan.FSResultChan = make(chan publicCode.FingerprintScanResult)
pocScan.FSScanEndChan = make(chan int)
pocScan.FSScanPauseChan = make(chan int)
pocScan.FSScanPauseChan2 = make(chan int, 2)
pocScan.FSScanProgressChan = make(chan int, publicCode.TimeOut-1)
URLS := strings.Split(URLStr, "\n")
var urls []string
var wg sync.WaitGroup
var lock sync.Mutex
for _, url := range URLS {
wg.Add(1)
go func(url string) {
defer wg.Done()
url = strings.ReplaceAll(url, "\r", "")
url = strings.TrimSpace(url)
url = strings.TrimRight(url, "/")
if !strings.Contains(url, "http://") && !strings.Contains(url, "https://") {
url1 := "http://" + url
url2 := "https://" + url
lock.Lock()
urls = append(urls, url1)
urls = append(urls, url2)
lock.Unlock()
} else {
lock.Lock()
urls = append(urls, url)
lock.Unlock()
}
}(url)
}
wg.Wait()
go func() {
pocScan.FingerprintScan(urls, linkPoc, isEasyScan)
}()
num := 0
go func() {
for true {
select {
case end := <-pocScan.FSScanEndChan:
if end == 1 {
time.Sleep(1 * time.Second)
runtime.EventsEmit(a.ctx, "FingerprintScanProgress", 100)
return
}
if end == 2 {
//var err publicCode.FingerprintScanResult
//err.URL = "[*] 扫描已取消!"
//runtime.EventsEmit(a.ctx, "FingerprintScan", err)
return
}
case msg := <-pocScan.FSResultChan:
runtime.EventsEmit(a.ctx, "FingerprintScan", msg)
case p := <-pocScan.FSScanProgressChan:
num = num + p
progress := num * 100 / len(urls)
runtime.EventsEmit(a.ctx, "FingerprintScanProgress", progress)
case <-pocScan.FSScanPauseChan:
<-pocScan.FSScanPauseChan2
}
}
}()
}
func (a *App) FSScanPause() {
pocScan.FSScanPauseChan <- 1
}
func (a *App) FSScanContinue() {
pocScan.FSScanPauseChan2 <- 1
}
func (a *App) FSScanClose() {
pocScan.FSScanPauseChan2 <- 1
pocScan.FSScanEndChan <- 2
}
func (a *App) FingerprintGetName(key string) []string {
names := mysqldb.SearchFingerprintGetNameByName(key)
return names
}
func (a *App) DefaultBrowserOpenUrl(url string) {
tools.OpenUrlByDefaultBrowser(url)
}