Red Team Tools and Methodology

Automates reconnaissance, subdomain enumeration, and vulnerability scanning workflows for bug bounty hunting.

1|Updated May 10, 2026
One-click install
npx skills add https://github.com/Tgoldi/claude-skills --skill red-team-tools-and-methodology-tgoldi
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Red Team Tools and Methodology
Source: https://github.com/Tgoldi/claude-skills/tree/main/Red%20Team%20Tools%20and%20Methodology
Command: npx skills add https://github.com/Tgoldi/claude-skills --skill red-team-tools-and-methodology-tgoldi

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve? Security researchers and bug bounty hunters need a repeatable, comprehensive methodology for reconnaissance and vulnerability discovery, but manually chaining dozens of tools (Amass, Subfinder, httpx, Nuclei, ffuf, Dalfox) is error-prone and easy to do incompletely. ## Core Features & Use Cases - Subdomain Enumeration & Live Host Discovery: Combines Amass, Subfinder, Assetfinder, and dnsgen permutations, then filters live hosts with httpx/httprobe and fingerprints technologies. - Content & API Discovery: Uses ffuf, waybackurls, and gau to find hidden endpoints, parameters, and API versions across target applications. - Automated Vulnerability Hunting: Pipelines for XSS discovery (ParamSpider, Gxss, Dalfox) and broad CVE/misconfiguration scanning with Nuclei templates. - Use Case: Given a bug bounty target domain, run the full recon chain — enumerate subdomains, probe live hosts, mine historical URLs, and scan with Nuclei — to produce a prioritized list of attack surfaces and findings. ## Quick Start Ask the assistant to follow red team methodology to enumerate subdomains and scan for vulnerabilities on your authorized bug bounty target domain.

Frequently Asked Questions about Red Team Tools and Methodology

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I enumerate subdomains for bug bounty hunting?

Combine multiple sources for coverage: run Amass in passive and active modes, Subfinder, and Assetfinder, then generate permutations with dnsgen. Merge all results with sort -u and probe them with httpx to find live hosts.

How to automate XSS hunting with Dalfox?

Extract parameters with ParamSpider or waybackurls, filter them with Gxss, then pipe the results into Dalfox with mining enabled. This automates payload injection and reflection detection across discovered parameters.

What tools are needed for this recon methodology?

You need a Linux machine with Go-based tools: Amass, Subfinder, Assetfinder, httpx, httprobe, ffuf, Nuclei, Dalfox, waybackurls, and gau. Some features also require API keys for services like Shodan or Censys.

Does Nuclei scanning work on any target?

Nuclei should only be run against hosts within your authorized bug bounty scope. It supports template-based scanning for CVEs, technologies, and vulnerabilities, but results can include false positives requiring manual verification.

Why am I getting rate limited during reconnaissance?

Aggressive scanning triggers target rate limits and WAF blocks. Reduce concurrency, add delays between requests, or use proxy rotation, and always respect the program's rules of engagement.

What are the limitations of automated vulnerability scanning?

Automated tools generate false positives and miss logic flaws, authentication issues, and business-logic bugs. Manual testing with Burp Suite and application analysis, such as the Jason Haddix heat map method, remains necessary.