
50+ detectors across 10 categories, with continuous monitoring built in: schedule recurring scans, get alerted only on new findings, track your attack surface over time, and gate your CI/CD — all free.
A free, full-stack security scanning platform for bug bounty hunters and security researchers — 50+ detectors, continuous monitoring, and CI/CD gating from a single dashboard.
▶ Live app: bugbounty-arsenal.net — free, no credit card.
If this is useful, please ⭐ the repo — it genuinely helps.
Most scanners run once and forget. BugBounty Arsenal keeps watching your targets and surfaces only what changed:
NEW badge on anything that appeared this week.git clone https://github.com/FoxVR-sudo/Bug-Bounty-Arsenal-v.3.git
cd Bug-Bounty-Arsenal-v.3
cp .env.example .env # set SECRET_KEY, ALLOWED_HOSTS, etc.
docker compose up -d --build
# app: http://localhost:3000 · api: http://localhost:8001
Create an API key in the app (Profile → API keys), then gate any pipeline:
# .github/workflows/security.yml
- uses: actions/checkout@v4
- uses: FoxVR-sudo/Bug-Bounty-Arsenal-v.3/.github/actions/bugbounty-scan@main
with:
api-key: ${{ secrets.BBA_API_KEY }}
target: https://staging.example.com
category: 1
fail-on: high
Or from a terminal (Python 3, no dependencies):
export BBA_API_KEY=your_key
python cli/bba_scan.py --target https://example.com --category 1 --fail-on high
Every finding gets a "How to fix (AI)" button that returns tailored remediation guidance — why it matters, how to fix it (with code/config snippets), how to verify, and references. A "How to fix all (AI)" button does the whole scan at once, deduplicated by finding type so the same issue across many URLs is explained once (and cached), not generated again and again.
It's advice for you to apply, clearly labeled AI-generated with a "verify before acting" note. The tool never makes changes to the scanned target.
The feature stays off until you configure a provider — it's completely optional and safe to run without.
Contributions welcome — see CONTRIBUTING.md and CODE_OF_CONDUCT.md. Licensed under the MIT License. Use only against targets you are authorized to test.