| name | red-team-tools |
| description | Implement proven methodologies and tool workflows from top security researchers for effective reconnaissance, vulnerability discovery, and bug bounty hunting. Automate common tasks while maintaining thorough coverage of attack surfaces. |
| type | skill |
| created | 2026-02-27T00:00:00.000Z |
| domain | security |
| category | pentesting |
| risk | offensive |
| source | community |
| tags | ["skill","security","pentesting","red","team"] |
AUTHORIZED USE ONLY: Use this skill only for authorized security assessments, defensive validation, or controlled educational environments.
Red Team Tools and Methodology
Purpose
Implement proven methodologies and tool workflows from top security researchers for effective reconnaissance, vulnerability discovery, and bug bounty hunting. Automate common tasks while maintaining thorough coverage of attack surfaces.
Inputs/Prerequisites
- Target scope definition (domains, IP ranges, applications)
- Linux-based attack machine (Kali, Ubuntu)
- Bug bounty program rules and scope
- Tool dependencies installed (Go, Python, Ruby)
- API keys for various services (Shodan, Censys, etc.)
Outputs/Deliverables
- Comprehensive subdomain enumeration
- Live host discovery and technology fingerprinting
- Identified vulnerabilities and attack vectors
- Automated recon pipeline outputs
- Documented findings for reporting
Core Workflow
1. Project Tracking and Acquisitions
Set up reconnaissance tracking:
mkdir -p target/{recon,vulns,reports}
cd target
amass intel -org "Target Company" -src
curl -s "https://bgp.he.net/search?search=targetcompany&commit=Search"
2. Subdomain Enumeration
Comprehensive subdomain discovery:
echo "target.com" > wildcards
amass enum -passive -d target.com -src -o amass_passive.txt
amass enum -active -d target.com -src -o amass_active.txt
subfinder -d target.com -silent -o subfinder.txt
cat wildcards | assetfinder --subs-only | anew domains.txt
findomain -t target.com -o
domains.txt | dnsgen - | httprobe > permuted.txt
amass_*.txt subfinder.txt | -u > all_subs.txt