Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/bonkc/BugBountySubdomains

Tools to gather subdomains from Bug Bounty programs
https://github.com/bonkc/BugBountySubdomains

Last synced: about 2 months ago
JSON representation

Tools to gather subdomains from Bug Bounty programs

Awesome Lists containing this project

README

        

# BugBountySubdomains

Simple scripts to enumerate bug bounty programs and subdomains. Useful for information gathering and hunting.

Use the information to gather more subdomains, check for subdomain takeovers, delegation, etc.

# Example Usages:

python geth1programs.py > h1programs.txt

python geth1urls.py

Get subdomains from one program.
python geth1urls.py spotify

Get URLs from all programs

for p in $(cat list.txt); do python geth1urls.py $p; done

Some Usage Ideas:

Create a folder structure with domains

`for p in $(cat h1programs.txt); do mkdir ./programs/$p; python geth1urls.py $p > ./programs/$p/domains.txt; done`

# TODO

Scrape BugCrowd program and subdomains

# DISCLAIMER

I hold no responsibility for how you use the gathered resources.

May break at any time.

Always follow HackerOne rules and program specific rules.
Always verify the enumerated programs and URLs are in-scope before bug hunting.