-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathxnlinkfinder.json
55 lines (55 loc) · 1.86 KB
/
xnlinkfinder.json
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
{
"id": "xnlinkfinder",
"title": "xnLinkFinder",
"slug": "xnlinkfinder",
"description": "A python tool used to discover endpoints, potential parameters, and a target specific wordlist for a given target",
"colorPref": "#333",
"contents": [
{
"title": "Basic",
"items": [
{
"definition": "Find Links from a specific target",
"code": "xnLinkFinder -i target.com -sf target.com"
},
{
"definition": "Find Links from a list of URLs",
"code": "xnLinkFinder -i target_js.txt -sf target.com"
},
{
"definition": "Find Links from a files in a directory",
"code": "xnLinkFinder -i ~/.config/waymore/results/target.com"
},
{
"definition": "Find Links from a Burp project",
"code": "xnLinkFinder -i target_burp.xml"
},
{
"definition": "Find Links from an OWASP ZAP project",
"code": "xnLinkFinder -i target_zap.txt"
},
{
"definition": "Find Links from a Cadio export CSV file",
"code": "xnLinkFinder -i 2023-03-18-010332_csv_requests.csv"
},
{
"definition": "Find Links from a Waymore results directory",
"code": "xnLinkFinder -i ~/Tools/waymore/results/target.com"
}
]
},
{
"title": "Advanced",
"items": [
{
"definition": "Find Links from a specific target",
"code": "xnLinkFinder -i target.com -sp target_prefix.txt -sf target_scope.txt -spo -inc -vv -H 'Authorization: Bearer XXXXXXXXXXXXXX' -c 'SessionId=MYSESSIONID' -u desktop mobile -d 10"
},
{
"definition": "Find Links from a Burp project",
"code": "xnLinkFinder -i target_burp.xml -o target_burp.txt -sp https://www.target.com -sf target.* -ow -spo -inc -vv"
}
]
}
]
}