Skip to content

Instantly share code, notes, and snippets.

@bl4de
Last active July 12, 2017 06:57
Show Gist options
  • Save bl4de/6d57f16d0ff7306234fd82136eab9594 to your computer and use it in GitHub Desktop.
Save bl4de/6d57f16d0ff7306234fd82136eab9594 to your computer and use it in GitHub Desktop.
How many bug bounty programs listed on Bugcrowd
#!/bin/bash
#
# -- @_bl4de https://twitter/_bl4de
#
# -- This script checks how many programs are listed on
# -- https://bugcrowd.com/list-of-bug-bounty-programs
#
echo "[+] get list of bugbounty programs from Bugcrowd..."
curl --silent -o tmp.list https://bugcrowd.com/list-of-bug-bounty-programs
grep 'class="tracked"' tmp.list | cut -d'>' -f 2 | sort -u | cut -d'<' -f 1 > bb_programs_list
available=`wc -l bb_programs_list`
rm -f tmp.list
echo "[+] done, list saved in 'bb_programs_list'..."
echo "[+] currently available programs: $available"
echo "[+] DONE"
echo
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment