Last active
April 28, 2020 18:57
-
-
Save khanjanny/7b67e95abb3a67b0c3ef54cf7da5f142 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| //change hackerone.com to any domain to extract subdomains | |
| curl -s "https://crt.sh/?q=%25.hackerone.com&output=json" |jq -r '.[].name_value' | sed 's/\*\.//g' | sort -u | grep -o "\w.*hackerone.com" | sort -u >> output.txt | |
| curl https://www.threatcrowd.org/searchApi/v2/domain/report/?domain=hackerone.com | jq '.' | sort -u | grep hackerone.com >> output.txt | |
| curl https://api.hackertarget.com/hostsearch/?q=hackerone.com | cut -d',' -f1 | sort -u | grep hackerone.com >> output.txt | |
| curl https://certspotter.com/api/v0/certs?domain=hackerone.com | sort -u >> output.txt | |
| curl http://web.archive.org/cdx/search/cdx?url=*.hackerone.com/\&output=text\&fl=original\&collapse=urlkey |sort| grep hackerone.com |sed -e 's_https*://__' -e "s/\/.*//" -e 's/:.*//' -e 's/^www\.//' | sort -u >> output.txt | |
| curl http://index.commoncrawl.org/CC-MAIN-2018-22-index?url=*.hackerone.com\&output=json | jq -r .url | sort -u >> output.txt | |
| curl https://api.threatminer.org/v2/domain.php?q=hackerone.com\&rt=5 | jq '.' | sort -u | grep hackerone.com >> output.txt | |
| curl https://dns.bufferover.run/dns?q=.hackerone.com |jq -r .FDNS_A[]| cut -d',' -f2| sort -u >> output.txt |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment