Python bug-bounty

Open-source Python projects categorized as bug-bounty

Top 22 Python bug-bounty Projects

  1. dirsearch

    Web path scanner

  2. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
  3. claude-bug-bounty

    AI-powered bug bounty hunting from your terminal - recon, 20 vuln classes, autonomous hunting, and report generation. All inside Claude Code.

    Project mention: Show HN: Pentesting Tool Using Claude | news.ycombinator.com | 2026-03-26
  4. clairvoyance

    Obtain GraphQL API schema even if the introspection is disabled

  5. diodb

    Open-source vulnerability disclosure and bug bounty program database

  6. resolvers

    The most exhaustive list of reliable DNS resolvers. (by trickest)

  7. pentest-ai

    Offensive-security MCP server with 205 wrapped tools, 17 specialist agents, and 60 SPA-aware probes for OWASP Top 10. CLI + MCP, BYO LLM. No API key needed on MCP path.

    Project mention: Show HN: Ptai – an MCP that chains low-sev findings into RCE | news.ycombinator.com | 2026-05-19
  8. webdork

    A Python tool to automate some dorking stuff to find information disclosures.

  9. ParaForge

    A BurpSuite extension to create a custom word-list of endpoint and parameters for enumeration and fuzzing

  10. Layla

    [EN] BETA: Layla - recon tool for bug bounty

  11. Beginner-Bug-Bounty-Automation

    Many script that can be modified according to your needs for Information Gathering and Asset discovery in Bug Bounty Hunting (Pull requests are welcome!)

  12. Claude-BugHunter

    A Claude Code skill bundle for bug hunting and external red-team work - 51 skills, 15 slash commands, 574+ disclosed-report patterns curated across 24 vulnerability classes, plus enterprise identity + infrastructure attack matrices.

    Project mention: Show HN: Claude Code Bundle for Bug Hunting with 574 Report Patterns | news.ycombinator.com | 2026-05-20
  13. RedTiger

    RedTiger - Automated XSS vulnerability testing tool with intelligent endpoint filtering and beautiful terminal UI

  14. Subfind3r

    An improved version of Sublist3r, a python based Fast subdomains enumeration tool for penetration testers

  15. GEMMA-by-GOOGLE

    GEMMA-POWERED-BY-GOOGLE-CYBERSECURITY-AUTONOMOUS-AI An autonomous AI agent using a Linux Environment using a GEMMA4-12b model. HIGHLY ABLITERATED. Fully Local-Fully FREE -WITH PERSISTENT NEG-EXPERIENCE-CACHE -LEARNING-AND GETTING SMARTER WITH EACH ENGAGEMENT. AUTONOMOUS RECON-ATTACK-LOOPS AND AUTOMATIC- PROFESSIONAL REPORT GENERATION-ON FINDINGS.

    Project mention: The Bug That Made My Pentesting Agent Give Up | dev.to | 2026-06-30

    What It Does · Tools · Architecture · Stack · Usage · Contributing

  16. hackingpal

    An AI-assisted security testing workspace for authorized engagements.

    Project mention: Hackingpal | news.ycombinator.com | 2026-06-20
  17. SpyHunt

    SpyHunt v4.0: A comprehensive Network Scanner & Vulnerability Assessment tool. Automate OSINT, Reconnaissance, and Bug Bounty hunting with advanced scanners (XXE, SSRF, SSTI, SQLi) plus Nuclei & Shodan integration. (Fork from @gotr00t0day) (by Pymmdrza)

    Project mention: SpyHunt | dev.to | 2025-12-30

    git clone https://github.com/Pymmdrza/spyhunt.git cd spyhunt pip3 install -r requirements.txt sudo python3 install.py

  18. lumina

    ⚡ Passive OSINT reconnaissance tool — subdomains, GitHub leaks, Shodan, Wayback Machine (by surfruit)

    Project mention: Show HN: Lumina – passive OSINT recon tool for domains | news.ycombinator.com | 2026-02-18
  19. ReconForge

    Project mention: ReconForge – Open-Source Security Reconnaissance Toolkit | news.ycombinator.com | 2026-05-22
  20. api-security-auditor-pro

    Professional API security auditing tool that detects rate limiting vulnerabilities and misconfigurations in REST APIs

    Project mention: I got tired of manually testing API rate limits, so I built a tool | dev.to | 2026-05-30

    GitHub: miladrezanezhad/api-security-auditor-pro

  21. scansearch-python

    Official Python SDK and CLI for ScanSearch — live internet scanning & exposure-research platform. Alternative to Shodan and Censys.

    Project mention: Stop Guessing What’s Public: Automating Attack Surface Discovery | dev.to | 2026-06-24

    import requests import json # Configuration API_KEY = "YOUR_SCANSEARCH_API_KEY" BASE_URL = "https://scansearch.net/api/v1" # Hypothetical API endpoint TARGET_NET = "192.168.1.0/24" # Replace with your actual public CIDR ALLOWED_PORTS = [80, 443] def fetch_exposed_services(net_range): """ Queries ScanSearch for all indexed services in a specific CIDR. """ headers = { "Authorization": f"Bearer {API_KEY}", "Content-Type": "application/json" } # We search for the net range using the 'net' filter query = f"net:{net_range}" try: response = requests.get( f"{BASE_URL}/search", params={"q": query}, headers=headers ) response.raise_for_status() return response.json().get('results', []) except Exception as e: print(f"Error fetching data: {e}") return [] def audit_infrastructure(): print(f"--- Starting Audit for {TARGET_NET} ---") results = fetch_exposed_services(TARGET_NET) flagged_count = 0 for entry in results: ip = entry.get('ip') port = entry.get('port') service = entry.get('service', 'Unknown') if port not in ALLOWED_PORTS: print(f"[!] ALERT: Unexpected service found!") print(f" IP: {ip}") print(f" Port: {port}") print(f" Service: {service}") print(f" Banner: {entry.get('banner', 'N/A')[:50]}...") flagged_count += 1 if flagged_count == 0: print("No unexpected services found. Infrastructure looks clean.") else: print(f"Audit complete. {flagged_count} issues found.") if __name__ == "__main__": audit_infrastructure()

  22. brs-kb

    BRS-KB is XSS Knowledge Base API

    Project mention: BRS-KB – open XSS knowledge base for scanners and CI | news.ycombinator.com | 2025-11-03
  23. atelier-ai

    Atelier AI — 7-agent autonomous income pipeline (Smart Contract Auditor + Scrape API + Landing Generator)

    Project mention: Building a 7-Agent Autonomous Income Pipeline in 6 Hours with Claude Code | dev.to | 2026-05-17

    Six hours later Atelier AI shipped as a 2.5k-line Python harness. This is what worked, what didn't, and how five rounds of code review turned 4 CRITICAL holes into closed pull requests.

NOTE: The open source projects on this list are ordered by number of github stars. The number of mentions indicates repo mentiontions in the last 12 Months or since we started tracking (Dec 2020).

Python bug-bounty discussion

Log in or Post with

Python bug-bounty related posts

  • The Bug That Made My Pentesting Agent Give Up

    1 project | dev.to | 30 Jun 2026
  • Stop Guessing What’s Public: Automating Attack Surface Discovery

    1 project | dev.to | 24 Jun 2026
  • Open-source AI agent pentester chains vulnerabilities into multi-stage exploits

    1 project | news.ycombinator.com | 11 Feb 2026
  • nikitastupin/clairvoyance: Obtain GraphQL API schema even if the introspection is disabled

    1 project | /r/bugbountybeginner | 8 Sep 2023
  • ParaForge: A BurpSuite extension to create a custom word list of endpoints and parameters for enumeration and fuzzing

    1 project | /r/cybersecurity | 30 Jun 2023
  • ParaForge: A BurpSuite extension to create a custom word-list of endpoint and parameters for enumeration and fuzzing

    1 project | /r/bag_o_news | 27 Jun 2023
  • How do real hunters handle with rate-limit?

    3 projects | /r/bugbounty | 10 Mar 2023
  • A note from our sponsor - SaaSHub
    www.saashub.com | 11 Jul 2026
    SaaSHub helps you find the best software and product alternatives Learn more →

Index

What are some of the best open-source bug-bounty projects in Python? This list will help you:

# Project Stars
1 dirsearch 14,462
2 claude-bug-bounty 3,861
3 clairvoyance 1,488
4 diodb 1,072
5 resolvers 1,021
6 pentest-ai 266
7 webdork 155
8 ParaForge 142
9 Layla 75
10 Beginner-Bug-Bounty-Automation 61
11 Claude-BugHunter 28
12 RedTiger 15
13 Subfind3r 10
14 GEMMA-by-GOOGLE 6
15 hackingpal 4
16 SpyHunt 3
17 lumina 4
18 ReconForge 1
19 api-security-auditor-pro 1
20 scansearch-python 0
21 brs-kb 0
22 atelier-ai 0

Sponsored
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com

Did you know that Python is
the 1st most popular programming language
based on number of references?