Làm cách nào tôi tìm thấy +100 Phản ánh Cross Site Scripting & SQL Injection trên tiền thưởng Hackerone Bug riêng tư…

May 03 2023
.
  • Công cụ tìm phụ:https://github.com/projectdiscovery/subfinder
  • Công cụ tìm tài sản:https://github.com/tomnomnom/assetfinder
  • httpx:https://github.com/projectdiscovery/httpx
  • Người nhện:https://github.com/devanshbatham/ParamSpider
  • Kxss hoặc GF:https://github.com/Emoe/kxss//https://github.com/tomnomnom/gf

for URL in $(</root/recon/target/httpx); do (python3 paramspider.py -d "${URL}");
done;

  1. thu thập tất cả các tên miền trong phạm vi
  2. chạy Subfinder bằng lệnh sau
  3. subfinder -dL domains.txt -o subfider-subdomains.txt
    

    cat domain_list.txt | assetfinder --subs-only > assetfinder-subdomains.txt
    

    cat subfinder-subdomains.txt assetfinder-subdomains.txt > subdomains.txt
    sort -u subdomains.txt > sort.txt
    

    cat sort.txt | httpx -mc 200 > 200_urls.txt
    

    for URL in $(</root/recon/target/200_urls.txt); do (python3 paramspider.py -d "${URL}");
    done
    

cat filtered_urls.txt | kxss