mirror of
https://github.com/xalgord/My-Methodologies.git
synced 2024-11-23 12:13:05 +00:00
26 lines
885 B
Markdown
26 lines
885 B
Markdown
## Get Parameter as much as possible
|
|
|
|
1. https://github.com/devanshbatham/ParamSpider
|
|
2. gospider -S tageturls.txt -c 10 -d 5 --blacklist ".(jpg|jpeg|gif|css|tif|tiff|png|ttf|woff|woff2|ico|pdf|svg|txt)" --other-source | grep -e "code-200" | awk '{print $5}'|grep "=" | qsreplace -a | dalfox pipe -o result.txt
|
|
3. Waybackurls | gau
|
|
4. https://github.com/s0md3v/Arjun
|
|
5. https://github.com/hakluke/hakrawler
|
|
6. https://github.com/PortSwigger/param-miner
|
|
|
|
Combine all in a file and remove duplicates.
|
|
|
|
## Run XSS fuzzer
|
|
1. https://github.com/s0md3v/XSStrike
|
|
2. https://github.com/hahwul/dalfox
|
|
|
|
|
|
Resources:
|
|
- https://blog.yeswehack.com/yeswerhackers/parameter-discovery-quick-guide-to-start/
|
|
- https://infosecwriteups.com/tale-of-my-first-xss-27f622bc47c0
|
|
<hr>
|
|
|
|
## dalfox usage:
|
|
```
|
|
gf xss td.com.txt | grep -Eo 'https?://[^\"]+' > tdfinal.txt
|
|
dalfox file domain.txt -w 20 --silence
|
|
```
|