Scope Finder is a Python script that monitors bug bounty program scopes (from HackerOne and Bugcrowd) and automatically sends new targets to your Discord channel via webhook. Ideal for bug bounty hunters who want to stay ahead and catch new assets as soon as they're added.
- Fetches scopes from HackerOne and Bugcrowd
- Detects new in-scope targets (URLs, websites)
- Sends Discord embed notifications with detailed info:
- Program name & link
- Asset identifier & type
- Bounty & submission status
- Max severity, availability, confidentiality, integrity requirements
- Max payout (For Bugcrowd)
git clone https://github.com/FARBODxME/Bugbounty_ScopeFinder.git
cd Bugbounty_ScopeFinder
pip install -r requirements.txtDISCORD_WEBHOOK_URL = "https://discord.com/api/webhooks/..."python scope_finder.py-
Downloads the latest HackerOne and Bugcrowd scope data.
-
Compares with local JSON files (seen_h1.json and seen_bugcrowd.json) to track what youโve already seen.
-
If new targets are found, it sends a Discord embed and updates the JSON files.
๐กOn the first run, it skips sending to Discord (to avoid spam) but saves all data for future comparisons.
-
Make sure your webhook URL is kept secret.
-
The script persists state using JSON files (seen_h1.json, seen_bugcrowd.json), so donโt delete them unless you want to reset history.
-
No database needed โ simple & lightweight.
Happy hacking! ๐ดโโ ๏ธ

