Skip to content

Instantly share code, notes, and snippets.

@jgamblin
Created August 30, 2018 14:05
Show Gist options
  • Star 2 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jgamblin/c22c0791af7572280d7fd569141650fe to your computer and use it in GitHub Desktop.
Save jgamblin/c22c0791af7572280d7fd569141650fe to your computer and use it in GitHub Desktop.
Bulk Bug Bounty Scanning With Burp 2.0
#!/bin/bash
#Simple Script To Scan All Public Bounty Sites With Burp 2.0
sites=$(curl https://raw.githubusercontent.com/arkadiyt/bounty-targets-data/master/data/domains.txt)
for site in $sites
do
curl -vgw "\\n" 'http://127.0.0.1:1337/v0.1/scan' -d '{"urls":["'"$site"'"]}'
done
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment