-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathurlyzer.go
518 lines (455 loc) · 12.9 KB
/
urlyzer.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
package main
import (
"crypto/tls"
"flag"
"fmt"
"io"
"log"
"net/http"
"net/url"
"os"
"strings"
)
// ANSI escape codes for colors
const (
Reset = "\033[0m"
Red = "\033[31m"
Green = "\033[32m"
Yellow = "\033[33m"
Blue = "\033[34m"
Cyan = "\033[36m"
)
func main() {
var proxyURL string
flag.StringVar(&proxyURL, "p", "", "Proxy URL (optional)")
checkFinalURLDestination := flag.Bool("f", false, "Check the final destination of a URL after redirects.")
cookies := flag.Bool("c", false, "Parse cookies from a cookie header.")
sas := flag.Bool("sas", false, "Parse SAS URI & identify it's type.")
queryParamsToMod := flag.String("qr", "", "Query string parameters to modify (comma-separated key=value pairs).")
queryKeys := flag.String("qs", "", "Query string keys to extract (comma-separated keys).")
flag.Parse()
// Check if input is being piped
// Check if input is being piped
var inputURL string
stat, _ := os.Stdin.Stat()
if (stat.Mode() & os.ModeCharDevice) == 0 {
// Read from standard input
inputBytes, _ := io.ReadAll(os.Stdin)
inputURL = strings.TrimSpace(string(inputBytes))
} else if len(flag.Args()) > 0 {
// Read from command line argument
inputURL = flag.Arg(0)
} else {
fmt.Println("Please provide a URL or a cookie header as a command line argument or through standard input.")
os.Exit(1)
}
if *queryParamsToMod != "" {
// Parse the query string parameters
params := parseQueryParams(*queryParamsToMod)
// Modify the URL with the new query parameters
modifiedURL, err := modifyQueryParams(inputURL, params)
if err != nil {
log.Fatalf("Error modifying query parameters: %v", err)
}
fmt.Fprint(os.Stderr, "\033[32mModified URL:\033[0m\n")
fmt.Println(modifiedURL)
} else if *queryKeys != "" {
// Parse the query string keys
keys := parseQueryKeys(*queryKeys)
// Extract the key-value pairs from the URL
extractedParams, err := extractQueryParams(inputURL, keys)
if err != nil {
log.Fatalf("Error extracting query parameters: %v", err)
}
// Print the extracted key-value pairs
fmt.Printf("%sExtracted Query Parameters:%s\n", Green, Reset)
for key, value := range extractedParams {
fmt.Printf(" %s%s:%s %s\n", Blue, key, Reset, value)
}
} else if *cookies {
// Parse the cookie header from the input
cookiesMap, err := parseCookies(inputURL)
if err != nil {
fmt.Println("Error parsing cookies:", err)
os.Exit(1)
}
// Print the parsed cookies
fmt.Printf("%sCookies:%s\n", Green, Reset)
for name, value := range cookiesMap {
fmt.Printf(" %s%s:%s %s\n", Blue, name, Reset, value)
}
} else if *sas {
parsedURL, err := url.Parse(inputURL)
if err != nil {
log.Fatalf("Error parsing URL: %v", err)
}
values := parsedURL.Query()
// Identify the type of SAS URI
sasType := identifySASURIType(values)
fmt.Printf("%sSAS URI Type:%s %s\n", Red, Green, sasType)
// Print the parsed query parameters
for key, value := range values {
longFormName, longFormValue := getLongForm(sasType, key, value[0]) // Assuming each key has only one value
fmt.Printf(" %s%s=%s%s %s||%s %s=%s%s\n", Cyan, key, Yellow, value[0], Reset, Cyan, longFormName, Yellow, longFormValue)
}
} else if *checkFinalURLDestination {
finalDestination, headers, statusCode, err := getFinalDestination(proxyURL, inputURL)
if err != nil {
fmt.Println("Error:", err)
return
}
fmt.Printf("%sFinal Destination:%s %s\n", Cyan, Reset, finalDestination)
fmt.Printf("%sStatus Code:%s %d\n", Yellow, Reset, statusCode)
fmt.Printf("%sHeaders:%s\n", Green, Reset)
for key, value := range headers {
fmt.Printf(" %s%s:%s %s\n", Blue, key, Reset, value)
}
} else { //! Regular urlyzer analysis operation
parsedURL, err := url.Parse(inputURL)
if err != nil {
log.Fatalf("Error parsing URL: %v", err)
}
// Scheme (Protocol)
fmt.Printf("%sScheme:%s %s\n", Cyan, Reset, parsedURL.Scheme)
// UserInfo
if parsedURL.User.String() != "" {
fmt.Printf("%sUserInfo:%s %s\n", Cyan, Reset, parsedURL.User)
}
// Host
fmt.Printf("%sHost:%s %s\n", Cyan, Reset, parsedURL.Hostname())
// Port
if parsedURL.Port() != "" {
fmt.Printf("%sPort:%s %s\n", Cyan, Reset, parsedURL.Port())
}
// Path
fmt.Printf("%sPath:%s %s\n", Cyan, Reset, parsedURL.Path)
// Query String
if parsedURL.RawQuery != "" {
fmt.Printf("%sQuery String:%s %s\n", Red, Reset, parsedURL.RawQuery)
// Parse query parameters
queryParams, _ := url.ParseQuery(parsedURL.RawQuery)
if len(queryParams) > 0 {
fmt.Printf("%sQuery Parameters:%s\n", Yellow, Reset)
for key, values := range queryParams {
fmt.Printf(" %s%s:%s %s\n", Green, key, Reset, strings.Join(values, ", "))
}
}
}
// Fragment (Hash)
if parsedURL.Fragment != "" {
fmt.Printf("%sFragment:%s %s\n", Red, Reset, parsedURL.Fragment)
// Parse fragment as query parameters
fragmentParams, _ := url.ParseQuery(parsedURL.Fragment)
if len(fragmentParams) > 0 {
fmt.Printf("%sFragment Parameters:%s\n", Yellow, Reset)
for key, values := range fragmentParams {
fmt.Printf(" %s%s:%s %s\n", Green, key, Reset, strings.Join(values, ", "))
}
}
}
}
}
func getFinalDestination(proxyURL, targetURL string) (string, http.Header, int, error) {
var client *http.Client
if proxyURL != "" {
proxy, err := url.Parse(proxyURL)
if err != nil {
return "", nil, 0, err
}
transport := &http.Transport{
Proxy: http.ProxyURL(proxy),
TLSClientConfig: &tls.Config{InsecureSkipVerify: true}, // Skip certificate check
}
client = &http.Client{
Transport: transport,
CheckRedirect: func(req *http.Request, via []*http.Request) error {
return http.ErrUseLastResponse // Prevent redirects
},
}
} else {
client = &http.Client{
CheckRedirect: func(req *http.Request, via []*http.Request) error {
return http.ErrUseLastResponse // Prevent redirects
},
}
}
resp, err := client.Get(targetURL) // Use GET instead of HEAD
if err != nil {
return "", nil, 0, err
}
defer resp.Body.Close()
finalDestination := targetURL
statusCode := resp.StatusCode
if statusCode >= 300 && statusCode <= 399 {
location, err := resp.Location()
if err != nil {
return "", nil, 0, err
}
finalDestination, _, statusCode, err = getFinalDestination(proxyURL, location.String())
if err != nil {
return "", nil, 0, err
}
}
return finalDestination, resp.Header, statusCode, nil
}
func parseCookies(cookieHeader string) (map[string]string, error) {
cookies := make(map[string]string)
pairs := strings.Split(cookieHeader, ";")
for _, pair := range pairs {
pair = strings.TrimSpace(pair)
if pair == "" {
continue
}
equalIndex := strings.Index(pair, "=")
if equalIndex < 0 {
return nil, fmt.Errorf("invalid cookie pair: %s", pair)
}
name := pair[:equalIndex]
value := pair[equalIndex+1:]
cookies[name] = value
}
return cookies, nil
}
// SAS URI Code:
func identifySASURIType(queryParams url.Values) string {
if _, ok := queryParams["ss"]; ok {
return "Account SAS URI"
}
if _, ok := queryParams["sktid"]; ok {
return "Delegation SAS URI"
}
return "Service SAS URI"
}
func getLongForm(sasType, key, value string) (string, string) {
switch sasType {
case "Account SAS URI":
return getLongFormAccountSAS(key, value)
case "Service SAS URI":
return getLongFormServiceSAS(key, value)
case "Delegation SAS URI":
return getLongFormDelegationSAS(key, value)
default:
return key, value // If the SAS type is unknown, return the original key and value
}
}
func getLongFormAccountSAS(key, value string) (string, string) {
// Mapping from short form to long form for keys
keyMap := map[string]string{
"sv": "signedVersion",
"ss": "signedServices",
"srt": "signedResourceTypes",
"sp": "signedPermissions",
"st": "signedStart Time",
"se": "signedExpiry Time",
"sip": "signedIP",
"spr": "signedProtocol",
"ses": "signedEncriptionScope",
"sig": "signature",
}
// Mapping from short form to long form for values
valueMap := map[string]string{
"r": "Read",
"w": "Write",
"d": "Delete",
"y": "Permanent Delete",
"l": "List",
"a": "Add",
"c": "Create or Container[srt]",
"u": "Update",
"p": "Process",
"t": "Tag or Table[ss]",
"f": "Filter or File[ss]",
"i": "Set Immutability Policy",
"b": "Blob",
"q": "Queue",
"s": "Service",
"o": "Object",
}
longFormKey, ok := keyMap[key]
if !ok {
longFormKey = key // If no mapping found, use the original key
}
longFormValue := ""
//for _, char := range value {
// longForm, ok := valueMap[string(char)]
// if ok {
// if longFormValue != "" {
// longFormValue += ", "
// }
// longFormValue += longForm
// }
//}
//if longFormValue == "" {
// longFormValue = value // If no mapping found, use the original value
//}
switch key {
case "ss", "srt", "sp":
longFormValue = getCombinedLongForm(value, valueMap)
default:
longFormValue, ok = valueMap[value]
if !ok {
longFormValue = value // If no mapping found, use the original value
}
}
return longFormKey, longFormValue
}
func getLongFormServiceSAS(key, value string) (string, string) {
// Mapping from short form to long form for keys
keyMap := map[string]string{
"sv": "signedVersion",
"ss": "signedServices",
"srt": "signedResourceTypes",
"sp": "signedPermissions",
"st": "signedStart Time",
"se": "signedExpiry Time",
"sip": "signedIP",
"spr": "signedProtocol",
"ses": "signedEncriptionScope",
"sig": "signature",
}
// Mapping from short form to long form for values
valueMap := map[string]string{
"r": "Read",
"w": "Write",
"d": "Delete",
"y": "Permanent Delete",
"l": "List",
"a": "Add",
"c": "Create or Container[srt]",
"u": "Update",
"p": "Process",
"t": "Tag or Table[ss]",
"f": "Filter or File[ss]",
"i": "Set Immutability Policy",
"b": "Blob",
"q": "Queue",
"s": "Service",
"o": "Object",
}
longFormKey, ok := keyMap[key]
if !ok {
longFormKey = key // If no mapping found, use the original key
}
longFormValue := ""
for _, char := range value {
longForm, ok := valueMap[string(char)]
if ok {
if longFormValue != "" {
longFormValue += ", "
}
longFormValue += longForm
}
}
if longFormValue == "" {
longFormValue = value // If no mapping found, use the original value
}
return longFormKey, longFormValue
}
func getLongFormDelegationSAS(key, value string) (string, string) {
// Mapping from short form to long form for keys
keyMap := map[string]string{
"sv": "signedVersion",
"ss": "signedServices",
"srt": "signedResourceTypes",
"sp": "signedPermissions",
"st": "signedStart Time",
"se": "signedExpiry Time",
"sip": "signedIP",
"spr": "signedProtocol",
"ses": "signedEncriptionScope",
"sig": "signature",
}
// Mapping from short form to long form for values
valueMap := map[string]string{
"r": "Read",
"w": "Write",
"d": "Delete",
"y": "Permanent Delete",
"l": "List",
"a": "Add",
"c": "Create or Container[srt]",
"u": "Update",
"p": "Process",
"t": "Tag or Table[ss]",
"f": "Filter or File[ss]",
"i": "Set Immutability Policy",
"b": "Blob",
"q": "Queue",
"s": "Service",
"o": "Object",
}
longFormKey, ok := keyMap[key]
if !ok {
longFormKey = key // If no mapping found, use the original key
}
longFormValue := ""
for _, char := range value {
longForm, ok := valueMap[string(char)]
if ok {
if longFormValue != "" {
longFormValue += ", "
}
longFormValue += longForm
}
}
if longFormValue == "" {
longFormValue = value // If no mapping found, use the original value
}
return longFormKey, longFormValue
}
func getCombinedLongForm(value string, valueMap map[string]string) string {
longFormValue := ""
for _, char := range value {
longForm, ok := valueMap[string(char)]
if ok {
if longFormValue != "" {
longFormValue += ", "
}
longFormValue += longForm
}
}
if longFormValue == "" {
longFormValue = value // If no mapping found, use the original value
}
return longFormValue
}
func parseQueryParams(queryParams string) map[string]string {
params := make(map[string]string)
pairs := strings.Split(queryParams, ",")
for _, pair := range pairs {
kv := strings.SplitN(pair, "=", 2)
if len(kv) == 2 {
params[kv[0]] = kv[1]
}
}
return params
}
func modifyQueryParams(inputURL string, params map[string]string) (string, error) {
parsedURL, err := url.Parse(inputURL)
if err != nil {
return "", err
}
query := parsedURL.Query()
for key, value := range params {
query.Set(key, value)
}
parsedURL.RawQuery = query.Encode()
return parsedURL.String(), nil
}
func parseQueryKeys(queryKeys string) []string {
return strings.Split(queryKeys, ",")
}
func extractQueryParams(inputURL string, keys []string) (map[string]string, error) {
parsedURL, err := url.Parse(inputURL)
if err != nil {
return nil, err
}
query := parsedURL.Query()
extractedParams := make(map[string]string)
for _, key := range keys {
if value, exists := query[key]; exists {
extractedParams[key] = value[0] // Assuming each key has only one value
}
}
return extractedParams, nil
}