-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopn-re.go
388 lines (300 loc) · 7.77 KB
/
opn-re.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
package main
import (
"context"
"encoding/json"
"errors"
"io"
"log"
"net/http"
"reflect"
"regexp"
"strings"
"sync"
"time"
"github.com/chelnak/ysmrr"
"github.com/gookit/color"
"golang.org/x/exp/slices"
)
func starter(UserInput UserInput) error {
/**
This method is the starter of the package.
@var UserInput UserInput.
@return error.
*/
var testingUrls []string
var modifiedUrls []string
if (UserInput.Domain == "" && UserInput.Input == "") || (UserInput.Domain != "" && UserInput.Input != "") {
return errors.New("please add a domain or input file with domains")
}
sm := ysmrr.NewSpinnerManager()
mainSpinner := spinnerAdder(sm, "Processing...")
sm.Start()
if UserInput.Input == "" {
if UserInput.Domain == "" {
return errors.New("please add a valid domain name")
}
if !UserInput.Simple {
archiveSpinner := spinnerAdder(sm, "Getting Archives...")
webArchiveUrls := getWebArchiveUrls(UserInput.Domain)
spinnerStopper(archiveSpinner)
parsingSpinner := sm.AddSpinner("Parsing...")
testingUrls = getTestingUrl(webArchiveUrls)
spinnerStopper(parsingSpinner)
if !UserInput.Force {
filteringSpinner := spinnerAdder(sm, "Filtering...")
keys := readFile("config.txt")
testingUrls = filterUrls(testingUrls, keys)
spinnerStopper(filteringSpinner)
}
replacingSpinner := spinnerAdder(sm, "Building URLs...")
modifiedUrls = replaceUrls(testingUrls, UserInput.Xss)
spinnerStopper(replacingSpinner)
color.Greenln("Number of links to be scanned:", len(modifiedUrls))
} else {
replacingSpinner := spinnerAdder(sm, "Building URLs...")
keys := readFile("config.txt")
modifiedUrls = alterUrl(UserInput.Domain, keys)
spinnerStopper(replacingSpinner)
}
} else {
replacingSpinner := spinnerAdder(sm, "Building URLs...")
keys := readFile("config.txt")
domains := readFile(UserInput.Input)
modifiedUrls = alterUrl(domains, keys)
spinnerStopper(replacingSpinner)
}
result, err := callUrls(modifiedUrls, UserInput.Xss, UserInput.Verbose)
if err != nil {
log.Fatal(err)
}
spinnerStopper(mainSpinner)
sm.Stop()
if len(result) == 0 {
color.Redln("No vulnerable urls were detected!")
} else {
color.Greenln("The vulnerable urls are: ", result)
}
return nil
}
func getWebArchiveUrls(domain string) []string {
/**
This method will get all the archived urls of the domain.
@var domain string.
@return []string.
*/
var webArchiveUrls [][]string
var results []string
client := &http.Client{}
url := "https://web.archive.org/cdx/search/cdx?url=*." + domain + "&output=json&fl=original&collapse=urlkey"
req, err := http.NewRequest("GET", url, nil)
if err != nil {
log.Fatalln(err)
}
req.Header.Add("User-Agent", getUserAgents())
resp, err := client.Do(req)
if err != nil {
log.Fatalln(err)
}
defer resp.Body.Close()
body, err := io.ReadAll(resp.Body)
if err != nil {
log.Fatalln(err)
}
err = json.Unmarshal([]byte(body), &webArchiveUrls)
if err != nil {
log.Fatalln("No Data Found!")
}
createFile("archive_"+domain+"_"+getRandomString(5)+".txt", string(body))
for _, a := range webArchiveUrls {
results = append(results, a...)
}
return results
}
func getTestingUrl(webArchiveUrls []string) []string {
/**
This method will get all the testing urls that contains ? and =.
@var webArchiveUrls [][]string.
@return []string.
*/
var testingUrls []string
for _, url := range webArchiveUrls {
if strings.Contains(url, "?") && strings.Contains(url, "=") {
testingUrls = append(testingUrls, url)
}
}
return testingUrls
}
func filterUrls(urls []string, keys []string) []string {
/**
This method will search for the url based on a provided keys.
@var testingUrls []string.
@return []string.
*/
var filteredUrls []string
for _, url := range urls {
queryParams := strings.Split(url, "?")[1]
parameters := strings.Split(queryParams, "&")
for _, parameter := range parameters {
paraIndex := strings.Split(parameter, "=")
if slices.Contains(keys, paraIndex[0]) {
filteredUrls = append(filteredUrls, url)
}
}
}
return filteredUrls
}
func replaceUrls(testingUrls []string, isXss bool) []string {
/**
This method will replace querystring with open redirect payload.
@var testingUrls []string.
@return []string.
*/
var modifiedUrls []string
var paramCheck string
payloads := readFile("open-redirect-payloads.txt")
for _, url := range testingUrls {
queryParams := strings.Split(url, "?")[1]
parameters := strings.Split(queryParams, "&")
for _, parameter := range parameters {
paraIndex := strings.Split(parameter, "=")
if len(paraIndex) > 1 {
paraString := paraIndex[0] + "=" + paraIndex[1]
if !isXss {
for _, payload := range payloads {
paramCheck = paraIndex[0] + "=" + strings.Replace(paraIndex[1], paraIndex[1], string(payload), 1)
}
} else {
paramCheck = paraIndex[0] + "=" + strings.Replace(paraIndex[1], paraIndex[1], "jUbAeR", 1)
}
modifiedUrls = append(modifiedUrls, strings.Replace(url, paraString, paramCheck, 1))
}
}
}
return modifiedUrls
}
func checkRedirects(url string, ch chan<- string, wg *sync.WaitGroup, verbose bool) {
/**
This method will call modified urls async in channels and check for 302 redirect.
@var url string.
@var ch chan of boolean.
@var wg WaitGroup.
@return nil.
*/
defer wg.Done()
if verbose {
color.Grayln("Scanning:", url)
}
req, err := http.NewRequest("GET", url, nil)
if err != nil {
ch <- ""
return
}
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
defer cancel()
req = req.WithContext(ctx)
client := new(http.Client)
client.CheckRedirect = func(req *http.Request, via []*http.Request) error {
ch <- url
return nil
}
response, err := client.Do(req)
if err != nil {
log.Fatalln(err)
ch <- ""
return
}
defer response.Body.Close()
}
func callUrls(modifiedUrls []string, isXss bool, verbose bool) ([]string, error) {
/**
This method will call all URLs.
@var modifiedUrls []string.
@return []bool and error.
*/
ch := make(chan string)
var responses []string
var modifiedUrl string
var wg sync.WaitGroup
for _, modifiedUrl = range modifiedUrls {
wg.Add(1)
if !isXss {
go checkRedirects(modifiedUrl, ch, &wg, verbose)
} else {
go checkXss(modifiedUrl, ch, &wg, verbose)
}
}
go func() {
wg.Wait()
close(ch)
}()
for res := range ch {
if res != "" {
responses = append(responses, res)
}
}
return responses, nil
}
func checkXss(url string, ch chan<- string, wg *sync.WaitGroup, verbose bool) {
/**
This method will check if the url is vulernable to XSS.
@var url string.
@var ch chan<- string.
@var wg WaitGroup.
@return nil.
*/
defer wg.Done()
if verbose {
color.Grayln("Scanning:", url)
}
client := &http.Client{}
req, err := http.NewRequest("GET", url, nil)
if err != nil {
ch <- ""
return
}
req.Header.Add("User-Agent", getUserAgents())
resp, err := client.Do(req)
if err != nil {
ch <- ""
return
}
body, err := io.ReadAll(resp.Body)
defer resp.Body.Close()
if err != nil {
ch <- ""
return
}
found, err := regexp.MatchString("jUbAeR", string(body))
if err != nil {
ch <- ""
return
}
if found {
ch <- url
}
ch <- ""
return
}
func alterUrl(url interface{}, keys []string) []string {
/**
This method will alter a single or multiple URL.
@var url string or []string.
@var keys []string.
@return []string.
*/
var testingUrls []string
v := reflect.ValueOf(url)
switch v.Kind() {
case reflect.String:
for _, key := range keys {
testingUrls = append(testingUrls, "http://"+url.(string)+"?"+key+"="+"https://www.google.com/")
}
case reflect.Slice:
for _, _url := range url.([]string) {
for _, key := range keys {
testingUrls = append(testingUrls, "http://"+_url+"?"+key+"="+"https://www.google.com/")
}
}
}
return testingUrls
}