Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/bonkc/BugBountySubdomains
- Owner: bonkc
- Created: 2018-02-10T19:36:08.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-29T03:57:20.000Z (almost 7 years ago)
- Last Synced: 2024-08-05T17:40:36.716Z (5 months ago)
- Language: Python
- Homepage:
- Size: 9.77 KB
- Stars: 64
- Watchers: 5
- Forks: 15
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - bonkc/BugBountySubdomains - Tools to gather subdomains from Bug Bounty programs (Python)
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 spotifyGet 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.