Skip to content
KitploitKITPLOIT
ToolsBlog
Submit
ToolsBlog
Submit

Hacking, PenTest, and Cybersecurity Tools for Your Security Arsenal!

Kitploit is a directory of hacking, cybersecurity, and pentesting tools. Discover the latest project updates to find vulnerabilities, analyze systems, automate testing, and strengthen your security.

··Feeds·Contact·Privacy·© 2026 Kitploit

Tool Directory

Categories

View all categories
Loading categories
NextRecon — Advanced Recon tool for Bug Bounty and Pentesting | Kitploit
Tools/GitHubGitHub/juoum00000/nextrecon
OSINT (Open Source Intelligence)Password CrackingReconnaissanceVulnerability AnalysisInformation GatheringPenetration Testing
GitHubjuoum00000/nextrecon

NextRecon

Advanced Recon tool for Bug Bounty and Pentesting

View Repository
333210 months agoReviewed by Kitploit

Most Popular

View all →

Discover the most used tools by our community.

Explore all tools

Browse our collection of tools

View all tools →
Share

NextRecon

NextRecon is a simple Python-based reconnaissance tool designed for bug bounty hunters, security researchers, and penetration testers. It performs passive recon by collecting archived URLs from the Wayback Machine and fetching leaked credentials from the BreachCollection API. It also extracts unique GET parameters from the archived URLs for further testing (e.g., fuzzing or injection analysis).


🔗 Features

  • Archived URL Collection Gathers all URLs (optionally including subdomains) from the Wayback Machine for a given domain.

  • Leaked Credentials Lookup Queries the BreachCollection API to find associated credential leaks using:

    • Domain name.
    • Email domain.
  • Parameter Discovery Extracts unique query parameters from collected URLs to help identify potential injection points.

  • Output Files

    • DOMAIN-all_urls.txt: All archived URLs discovered.
    • DOMAIN-params.txt: Unique query parameters extracted.
    • DOMAIN-leaks.txt: Credentials found via BreachCollection.

Installation & Requirements

Dependencies

  • Python 3.6+
  • Required packages:
    • requests
    • pyyaml

Install them via pip:

root@kitploit:~
pip install -r requirements.txt

Provide your BreachCollection API key in the config.yaml file, so it looks like this:

root@kitploit:~
breachcollection_api_key: your_key

To get your API key go to this link and create a new API KEY (only for Researcher and Enterprise Tiers).

Usage

root@kitploit:~
python3 nextrecon.py <domain> [include_subdomains:true/false]

Do not include the protocol in the field. Example of correct usage:

root@kitploit:~
python3 nextrecon.py example.com true
Download Tool