๐ŸžBBP

Misc on BBPs

Grab updated list of open BBPS from Project Discovery's repo

https://github.com/projectdiscovery/public-bugbounty-programs/blob/main/chaos-bugbounty-list.json

https://raw.githubusercontent.com/projectdiscovery/public-bugbounty-programs/main/chaos-bugbounty-list.json

#Parse out only domains using jq

jq -r '.programs[].domains[]?' data.json > domains.txt

#Run subfinder to acquire targets

subfinder -dL domains.txt -o subs.txt

-------------------------

#be a cheap cun7 and use the facets option on shodan to acquire ips, then

grep -Eo '([0-9]{1,3}\.){3}[0-9]{1,3}' ips.txt > ip

------------------------

#Grab all unique ips from an http list, useful when feeding into naabu

cat http.txt | httpx -mc 200 -ip -silent | awk '{print $2}' | sort -u | grep -o '[^][]\+' > ips.txt

Last updated