-
Notifications
You must be signed in to change notification settings - Fork 55
/
scanfiles.go
508 lines (450 loc) · 16.3 KB
/
scanfiles.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
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
package main
import (
"encoding/base64"
"fmt"
"io"
"io/ioutil"
"net/http"
"os"
"regexp"
"strings"
"sync"
"github.com/fatih/color"
tld "github.com/jpillora/go-tld"
)
var tempDir = ".temp"
var tempFileSuffix = "temp_s3_file_"
func scanS3FilesSlow(fileURLs []string, bucketURL string) error {
var errors []error
if err := os.MkdirAll(tempDir, 0755); err != nil {
return err
}
//BELOW CODE BLOCK IS FOR ARRANGING BUCKETLOOT OUTPUT
var bucketScanRes bucketLootResStruct
bucketScanRes.BucketUrl = bucketURL
for _, fileURL := range fileURLs {
var (
bucketLootAsset bucketlootAssetStruct
bucketLootSecret bucketlootSecretStruct
bucketLootFile bucketlootSensitiveFileStruct
bucketLootKeyword bucketlootKeywordStruct
keywordDisc int
)
// Create a temporary file in the custom directory to store the downloaded content
tempFile, err := ioutil.TempFile(tempDir, tempFileSuffix)
if err != nil {
errors = append(errors, fmt.Errorf("error creating temporary file: %v", err))
continue
}
defer tempFile.Close()
client := &http.Client{
CheckRedirect: func(req *http.Request, via []*http.Request) error {
// You can customize redirect handling here if needed.
return nil
},
}
// Make HTTP request to S3 bucket
resp, err := client.Get(fileURL)
if err != nil {
errors = append(errors, fmt.Errorf("error making HTTP request to S3 bucket file URL: %v", err))
continue
}
defer resp.Body.Close()
_, err = io.Copy(tempFile, resp.Body)
if err != nil {
errors = append(errors, fmt.Errorf("error copying response body to temporary file: %v", err))
continue
}
body, err := ioutil.ReadFile(tempFile.Name())
if err != nil {
errors = append(errors, fmt.Errorf("error reading content from the temporary file: %v", err))
continue
}
if resp.StatusCode != http.StatusOK {
if resp.StatusCode == http.StatusNotFound {
errors = append(errors, fmt.Errorf("s3 bucket file not found: %s", fileURL))
} else if resp.StatusCode == http.StatusForbidden {
errors = append(errors, fmt.Errorf("s3 bucket file is private: %s", fileURL))
} else {
errors = append(errors, fmt.Errorf("unexpected response status code from S3 bucket file URL: %d: %s", resp.StatusCode, fileURL))
}
continue
}
// Parse HTML to scan S3 Files
//Extract Secrets
for _, rule := range rules {
reg := regexp.MustCompile(rule.Regex)
if reg.MatchString(string(body)) {
fmt.Printf("Discovered %v in %s\n", color.RedString("SECRET["+rule.Title+"]"), fileURL)
bucketLootSecret.Name = rule.Title
bucketLootSecret.URL = fileURL
bucketLootSecret.Severity = rule.Severity
bucketScanRes.Secrets = append(bucketScanRes.Secrets, bucketLootSecret)
bucketLootSecret.Name = ""
bucketLootSecret.URL = ""
if *notify {
if platforms[0].Discord != "" {
err := notifyDiscord(platforms[0].Discord, "BucketLoot discovered a secret! | SECRET TYPE: "+rule.Title+" | SECRET URL: "+fileURL+" | SECRET SEVERITY: "+rule.Severity+" | BUCKET URL: "+bucketURL)
if err != nil {
if strings.Contains(err.Error(), "204") {
fmt.Println("Notified successfully!")
} else {
fmt.Println("Couldn't notify!")
}
errors = append(errors, fmt.Errorf("error notifying! %s", err))
}
}
if platforms[1].Slack != "" {
err := notifySlack(platforms[1].Slack, "BucketLoot discovered a secret! | SECRET TYPE: "+rule.Title+" | SECRET URL: "+fileURL+" | SECRET SEVERITY: "+rule.Severity+" | BUCKET URL: "+bucketURL)
if err != nil {
if strings.Contains(err.Error(), "200") {
fmt.Println("Notified successfully! [SLACK]")
} else {
fmt.Println("Couldn't notify! [SLACK]")
}
errors = append(errors, fmt.Errorf("error notifying! %s", err))
}
}
}
}
}
//LOOK FOR POTENTIALLY SENSITIVE/VULN FILES
for _, check := range vulnerableFileChecks {
// Compile the regex pattern
var re *regexp.Regexp
re, err = regexp.Compile(check.Match)
if err != nil {
errors = append(errors, fmt.Errorf("error compiling vuln files regex %s", err))
continue
}
// Check if the pattern matches the fileURL
if re != nil {
if re.MatchString(fileURL) {
fmt.Printf("Discovered %v in %s\n", color.YellowString("POTENTIALLY SENSITIVE FILE["+check.Name+"]"), fileURL)
bucketLootFile.Name = check.Name
bucketLootFile.URL = fileURL
bucketScanRes.SensitiveFiles = append(bucketScanRes.SensitiveFiles, bucketLootFile)
bucketLootFile.Name = ""
bucketLootFile.URL = ""
if *notify {
if platforms[0].Discord != "" {
err := notifyDiscord(platforms[0].Discord, "BucketLoot discovered a potentially sensitive file! | INFO: "+check.Name+" | FILE URL: "+fileURL+" | BUCKET URL: "+bucketURL)
if err != nil {
if strings.Contains(err.Error(), "204") {
fmt.Println("Notified successfully!")
} else {
fmt.Println("Couldn't notify!")
}
errors = append(errors, fmt.Errorf("error notifying! %s", err))
}
}
if platforms[1].Slack != "" {
err := notifySlack(platforms[1].Slack, "BucketLoot discovered a potentially sensitive file! | INFO: "+check.Name+" | FILE URL: "+fileURL+" | BUCKET URL: "+bucketURL)
if err != nil {
if strings.Contains(err.Error(), "200") {
fmt.Println("Notified successfully! [SLACK]")
} else {
fmt.Println("Couldn't notify! [SLACK]")
}
errors = append(errors, fmt.Errorf("error notifying! %s", err))
}
}
}
}
}
}
//Extract URLs
extURLs := urlRE.FindAllString(string(body), -1) // EXTRACT URLS FROM FILE
urlAssets = append(urlAssets, extURLs...) // APPEND TO ENTIRE URL LIST
if len(extURLs) > 0 {
fmt.Printf("Discovered %v in %s\n", color.BlueString("URL(s)"), fileURL)
}
//Extract Domains - Subdomains
for _, u := range extURLs { // USE URLS EXTRACTED FROM FILE FOR SCANNING
bucketLootAsset.URL = u
asset, err := tld.Parse(u)
if err == nil {
domAssets = append(domAssets, asset.Domain+"."+asset.TLD) // APPEND TO ENTIRE DOMAIN LIST
bucketLootAsset.Domain = asset.Domain + "." + asset.TLD
if asset.Subdomain != "" { // IF THE ASSET URL HAS A SUBDOMAIN
subAssets = append(subAssets, asset.Subdomain+"."+asset.Domain+"."+asset.TLD) // APPEND TO ENTIRE DOMAIN LIST
bucketLootAsset.Subdomain = asset.Subdomain + "." + asset.Domain + "." + asset.TLD
}
}
bucketScanRes.Assets = append(bucketScanRes.Assets, bucketLootAsset)
bucketLootAsset.URL = ""
bucketLootAsset.Domain = ""
bucketLootAsset.Subdomain = ""
}
// SEARCH FOR USER DEFINED KEYWORDS
for _, keyword := range scanKeywords {
keywordRe := regexp.MustCompile(keyword)
if keywordRe.MatchString(fileURL) {
bucketLootKeyword.Keyword = keyword
bucketLootKeyword.URL = fileURL
bucketLootKeyword.Type = "FilePath"
bucketScanRes.Keywords = append(bucketScanRes.Keywords, bucketLootKeyword)
keywordDisc = 1
}
if keywordRe.MatchString(string(body)) {
bucketLootKeyword.Keyword = keyword
bucketLootKeyword.URL = fileURL
bucketLootKeyword.Type = "FileContent"
bucketScanRes.Keywords = append(bucketScanRes.Keywords, bucketLootKeyword)
keywordDisc = 1
}
}
if keywordDisc == 1 {
fmt.Printf("Discovered %v in %s\n", color.GreenString("Keyword(s)"), fileURL)
}
}
os.RemoveAll(tempDir)
bucketlootOutput.Results = append(bucketlootOutput.Results, bucketScanRes)
if len(errors) > 0 {
for _, err := range errors {
if *errorLogging {
bucketlootOutput.Errors = append(bucketlootOutput.Errors, string(err.Error()))
}
}
}
return nil
}
func scanS3FilesFast(fileURLs []string, bucketURL string) error {
var wg sync.WaitGroup
var mutex sync.Mutex
var errors []error
var downloadedFiles []string
var (
bucketLootAsset bucketlootAssetStruct
bucketLootSecret bucketlootSecretStruct
bucketLootKeyword bucketlootKeywordStruct
bucketLootFile bucketlootSensitiveFileStruct
keywordDisc int
)
os.RemoveAll(tempDir)
// Create a temporary directory in the current working directory
if err := os.MkdirAll(tempDir, 0755); err != nil {
return err
}
bucketScanRes := bucketLootResStruct{
BucketUrl: bucketURL,
}
for _, fileURL := range fileURLs {
wg.Add(1)
go func(url string) {
defer wg.Done()
client := &http.Client{
CheckRedirect: func(req *http.Request, via []*http.Request) error {
// You can customize redirect handling here if needed.
return nil
},
}
resp, err := client.Get(url)
if err != nil {
mutex.Lock()
errors = append(errors, fmt.Errorf("error making HTTP request to S3 bucket file URL: %v", err))
mutex.Unlock()
return
}
defer resp.Body.Close()
if resp.StatusCode != http.StatusOK {
mutex.Lock()
if resp.StatusCode == http.StatusNotFound {
errors = append(errors, fmt.Errorf("s3 bucket file not found: %s", url))
} else if resp.StatusCode == http.StatusForbidden {
errors = append(errors, fmt.Errorf("s3 bucket file is private: %s", url))
} else {
errors = append(errors, fmt.Errorf("unexpected response status code from S3 bucket file URL: %d: %s", resp.StatusCode, url))
}
mutex.Unlock()
return
}
// Create a temporary file in the custom directory to store the downloaded content
tempFile, err := ioutil.TempFile(tempDir, tempFileSuffix)
if err != nil {
mutex.Lock()
errors = append(errors, fmt.Errorf("error creating temporary file: %v", err))
mutex.Unlock()
return
}
defer tempFile.Close()
_, err = io.Copy(tempFile, resp.Body)
if err != nil {
mutex.Lock()
errors = append(errors, fmt.Errorf("error copying response body to temporary file: %v", err))
mutex.Unlock()
return
}
// writes the source URL of the file to the end of the file
tempFile.WriteString("\n" + base64.StdEncoding.EncodeToString([]byte(url)))
tempFile.Close()
mutex.Lock()
downloadedFiles = append(downloadedFiles, tempFile.Name())
mutex.Unlock()
}(fileURL)
}
wg.Wait()
for _, filePath := range downloadedFiles {
wg.Add(1)
go func(filePath string) {
defer wg.Done()
body, err := ioutil.ReadFile(filePath)
lines := strings.Split(string(body), "\n")
urlByte, err := base64.StdEncoding.DecodeString(lines[len(lines)-1])
url := string(urlByte)
if err != nil {
mutex.Lock()
errors = append(errors, fmt.Errorf("error reading response body from S3 bucket file URL: %v: %s", err, url))
mutex.Unlock()
return
}
for _, rule := range rules {
reg := regexp.MustCompile(rule.Regex)
if reg.MatchString(string(body)) {
fmt.Printf("Discovered %v in %s\n", color.RedString("SECRET["+rule.Title+"]"), url)
bucketLootSecret.Name = rule.Title
bucketLootSecret.URL = url
bucketLootSecret.Severity = rule.Severity
mutex.Lock()
bucketScanRes.Secrets = append(bucketScanRes.Secrets, bucketLootSecret)
mutex.Unlock()
bucketLootSecret.Name = ""
bucketLootSecret.URL = ""
if *notify {
if platforms[0].Discord != "" {
err := notifyDiscord(platforms[0].Discord, "BucketLoot discovered a secret! | SECRET TYPE: "+rule.Title+" | SECRET URL: "+url+" | SECRET SEVERITY: "+rule.Severity+" | BUCKET URL: "+bucketURL)
if err != nil {
if strings.Contains(err.Error(), "204") {
fmt.Println("Notified successfully! [DISCORD]")
} else {
fmt.Println("Couldn't notify! [DISCORD]")
}
errors = append(errors, fmt.Errorf("error notifying! %s", err))
}
}
if platforms[1].Slack != "" {
err := notifySlack(platforms[1].Slack, "BucketLoot discovered a secret! | SECRET TYPE: "+rule.Title+" | SECRET URL: "+url+" | SECRET SEVERITY: "+rule.Severity+" | BUCKET URL: "+bucketURL)
if err != nil {
if strings.Contains(err.Error(), "200") {
fmt.Println("Notified successfully! [SLACK]")
} else {
fmt.Println("Couldn't notify! [SLACK]")
}
errors = append(errors, fmt.Errorf("error notifying! %s", err))
}
}
}
}
}
//LOOK FOR POTENTIALLY SENSITIVE/VULN FILES
for _, check := range vulnerableFileChecks {
// Compile the regex pattern
var re *regexp.Regexp
re, err = regexp.Compile(check.Match)
if err != nil {
errors = append(errors, fmt.Errorf("error compiling vuln files regex %s", err))
continue
}
// Check if the pattern matches the fileURL
if re != nil {
if re.MatchString(url) {
fmt.Printf("Discovered %v in %s\n", color.YellowString("POTENTIALLY SENSITIVE FILE["+check.Name+"]"), url)
bucketLootFile.Name = check.Name
bucketLootFile.URL = url
mutex.Lock()
bucketScanRes.SensitiveFiles = append(bucketScanRes.SensitiveFiles, bucketLootFile)
mutex.Unlock()
bucketLootFile.Name = ""
bucketLootFile.URL = ""
if *notify {
if platforms[0].Discord != "" {
err := notifyDiscord(platforms[0].Discord, "BucketLoot discovered a potentially sensitive file! | INFO: "+check.Name+" | FILE URL: "+url+" | BUCKET URL: "+bucketURL)
if err != nil {
if strings.Contains(err.Error(), "204") {
fmt.Println("Notified successfully! [DISCORD]")
} else {
fmt.Println("Couldn't notify! [DISCORD]")
}
errors = append(errors, fmt.Errorf("error notifying! %s", err))
}
}
if platforms[1].Slack != "" {
err := notifySlack(platforms[1].Slack, "BucketLoot discovered a potentially sensitive file! | INFO: "+check.Name+" | FILE URL: "+url+" | BUCKET URL: "+bucketURL)
if err != nil {
if strings.Contains(err.Error(), "200") {
fmt.Println("Notified successfully! [SLACK]")
} else {
fmt.Println("Couldn't notify! [SLACK]")
}
errors = append(errors, fmt.Errorf("error notifying! %s", err))
}
}
}
}
}
}
extURLs := urlRE.FindAllString(string(body), -1)
mutex.Lock()
urlAssets = append(urlAssets, extURLs...)
mutex.Unlock()
if len(extURLs) > 0 {
fmt.Printf("Discovered %v in %s\n", color.BlueString("URL(s)"), url)
}
for _, u := range extURLs {
bucketLootAsset.URL = u
asset, err := tld.Parse(u)
if err == nil {
mutex.Lock()
domAssets = append(domAssets, asset.Domain+"."+asset.TLD)
bucketLootAsset.Domain = asset.Domain + "." + asset.TLD
if asset.Subdomain != "" {
subAssets = append(subAssets, asset.Subdomain+"."+asset.Domain+"."+asset.TLD)
bucketLootAsset.Subdomain = asset.Subdomain + "." + asset.Domain + "." + asset.TLD
}
mutex.Unlock()
}
mutex.Lock()
bucketScanRes.Assets = append(bucketScanRes.Assets, bucketLootAsset)
mutex.Unlock()
bucketLootAsset.URL = ""
bucketLootAsset.Domain = ""
bucketLootAsset.Subdomain = ""
}
for _, keyword := range scanKeywords {
keywordRe := regexp.MustCompile(keyword)
if keywordRe.MatchString(url) {
bucketLootKeyword.Keyword = keyword
bucketLootKeyword.URL = url
bucketLootKeyword.Type = "FilePath"
mutex.Lock()
bucketScanRes.Keywords = append(bucketScanRes.Keywords, bucketLootKeyword)
keywordDisc = 1
mutex.Unlock()
}
if keywordRe.MatchString(string(body)) {
bucketLootKeyword.Keyword = keyword
bucketLootKeyword.URL = url
bucketLootKeyword.Type = "FileContent"
mutex.Lock()
bucketScanRes.Keywords = append(bucketScanRes.Keywords, bucketLootKeyword)
keywordDisc = 1
mutex.Unlock()
}
}
if keywordDisc == 1 {
fmt.Printf("Discovered %v in %s\n", color.GreenString("Keyword(s)"), url)
}
}(filePath)
}
wg.Wait()
os.RemoveAll(tempDir)
bucketlootOutput.Results = append(bucketlootOutput.Results, bucketScanRes)
if len(errors) > 0 {
for _, err := range errors {
if *errorLogging {
bucketlootOutput.Errors = append(bucketlootOutput.Errors, string(err.Error()))
}
}
}
return nil
}