Install any skill in seconds. Free to start, no credit card required.
Get Started Free →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.
.claude/skills/lingxling-red-team-tools/SKILL.md| Test case | Without → With | Effect | Δ tokens | Δ turns |
|---|---|---|---|---|
| case-06 | ✗→✓ | ▲ Improved | 241% | 0% |
| case-08 | ✗→✓ | ▲ Improved | 168% | 0% |
| case-18 | ✗→✓ | ▲ Improved | 49% | 0% |
| case-20 | ✓→✓ | = Same ✓ | 44% | 0% |
| case-21 | ✓→✓ | = Same ✓ | 50% | 0% |
> AUTHORIZED USE ONLY: Use this skill only for authorized security assessments, defensive validation, or controlled educational environments.
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.
Set up reconnaissance tracking:
bash# Create project structure mkdir -p target/{recon,vulns,reports} cd target # Find acquisitions using Crunchbase # Search manually for subsidiary companies # Get ASN for targets amass intel -org "Target Company" -src # Alternative ASN lookup curl -s "https://bgp.he.net/search?search=targetcompany&commit=Search"
Comprehensive subdomain discovery:
bash# Create wildcards file echo "target.com" > wildcards # Run Amass passively amass enum -passive -d target.com -src -o amass_passive.txt # Run Amass actively amass enum -active -d target.com -src -o amass_active.txt # Use Subfinder subfinder -d target.com -silent -o subfinder.txt # Asset discovery cat wildcards | assetfinder --subs-only | anew domains.txt # Alternative subdomain tools findomain -t target.com -o # Generate permutations with dnsgen cat domains.txt | dnsgen - | httprobe > permuted.txt # Combine all sources cat amass_*.txt subfinder.txt | sort -u > all_subs.txt
Identify responding hosts:
bash# Check which hosts are live with httprobe cat domains.txt | httprobe -c 80 --prefer-https | anew hosts.txt # Use httpx for more details cat domains.txt | httpx -title -tech-detect -status-code -o live_hosts.txt # Alternative with massdns massdns -r resolvers.txt -t A -o S domains.txt > resolved.txt
Identify technologies for targeted attacks:
bash# Whatweb scanning whatweb -i hosts.txt -a 3 -v > tech_stack.txt # Nuclei technology detection nuclei -l hosts.txt -t technologies/ -o tech_nuclei.txt # Wappalyzer (if available) # Browser extension for manual review
Find hidden endpoints and files:
bash# Directory bruteforce with ffuf ffuf -ac -v -u https://target.com/FUZZ -w /usr/share/seclists/Discovery/Web-Content/raft-medium-directories.txt # Historical URLs from Wayback waybackurls target.com | tee wayback.txt # Find all URLs with gau gau target.com | tee all_urls.txt # Parameter discovery cat all_urls.txt | grep "=" | sort -u > params.txt # Generate custom wordlist from historical data cat all_urls.txt | unfurl paths | sort -u > custom_wordlist.txt
Heat Map Priority Areas:
Analysis Questions:
bash# ParamSpider for parameter extraction python3 paramspider.py --domain target.com -o params.txt # Filter with Gxss cat params.txt | Gxss -p test # Dalfox for XSS testing cat params.txt | dalfox pipe --mining-dict params.txt -o xss_results.txt # Alternative workflow waybackurls target.com | grep "=" | qsreplace '"><script>alert(1)</script>' | while read url; do curl -s "$url" | grep -q 'alert(1)' && echo "$url" done > potential_xss.txt
bash# Nuclei comprehensive scan nuclei -l hosts.txt -t ~/nuclei-templates/ -o nuclei_results.txt # Check for common CVEs nuclei -l hosts.txt -t cves/ -o cve_results.txt # Web vulnerabilities nuclei -l hosts.txt -t vulnerabilities/ -o vuln_results.txt
Wordlists for API fuzzing:
bash# Enumerate API endpoints ffuf -u https://target.com/api/FUZZ -w /usr/share/seclists/Discovery/Web-Content/api/api-endpoints.txt # Test API versions ffuf -u https://target.com/api/v1/FUZZ -w api_wordlist.txt ffuf -u https://target.com/api/v2/FUZZ -w api_wordlist.txt # Check for hidden methods for method in GET POST PUT DELETE PATCH; do curl -X $method https://target.com/api/users -v done
bash#!/bin/bash domain=$1 if [[ -z $domain ]]; then echo "Usage: ./recon.sh <domain>" exit 1 fi mkdir -p "$domain" # Subdomain enumeration echo "[*] Enumerating subdomains..." subfinder -d "$domain" -silent > "$domain/subs.txt" # Live host discovery echo "[*] Finding live hosts..." cat "$domain/subs.txt" | httpx -title -tech-detect -status-code > "$domain/live.txt" # URL collection echo "[*] Collecting URLs..." cat "$domain/live.txt" | waybackurls > "$domain/urls.txt" # Nuclei scanning echo "[*] Running Nuclei..." nuclei -l "$domain/live.txt" -o "$domain/nuclei.txt" echo "[+] Recon complete!"
| Tool | Purpose | |------|---------| | Amass | Subdomain enumeration | | Subfinder | Fast subdomain discovery | | httpx/httprobe | Live host detection | | ffuf | Content discovery | | Nuclei | Vulnerability scanning | | Burp Suite | Manual testing | | Dalfox | XSS automation | | waybackurls | Historical URL mining |
/api/v1/users
/api/v1/admin
/api/v1/profile
/api/users/me
/api/config
/api/debug
/api/swagger
/api/graphqlhtml<!-- Test encoding handling --> <h1><img><table> <script> %3Cscript%3E %253Cscript%253E %26lt;script%26gt;
bashsubfinder -d target.com | httpx -title | tee results.txt
bashwaybackurls target.com | grep "=" | qsreplace "test" | httpx -silent | dalfox pipe
bash# Full recon chain amass enum -d target.com | httpx | nuclei -t ~/nuclei-templates/
| Issue | Solution | |-------|----------| | Rate limited | Use proxy rotation, reduce concurrency | | Too many results | Focus on specific technology stacks | | False positives | Manually verify findings before reporting | | Missing subdomains | Combine multiple enumeration sources | | API key errors | Verify keys in config files | | Tools not found | Install Go tools with go install |
This skill is applicable to execute the workflow or actions described in the overview.
| Case | Status | Duration (ms) | Turns | Tokens | Tool calls | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| Without | With | Δ | Without | With | Δ | Without | With | Δ | Without | With | Δ | ||
case-20 | pass→pass | 16,551 | 11,810 | -29% | 1 | 1 | 0% | 2,933 | 4,221 | +44% | 0 | 0 | — |
case-21 | pass→pass | 17,065 | 13,779 | -19% | 1 | 1 | 0% | 3,298 | 4,943 | +50% | 0 | 0 | — |
case-22 | pass→pass | 17,166 | 11,398 | -34% | 1 | 1 | 0% | 3,272 | 4,232 | +29% | 0 | 0 | — |
case-01 | fail→fail | 19,702 | 15,070 | -24% | 1 | 1 | 0% | 1,963 | 3,694 | +88% | 0 | 0 | — |
case-02 | fail→fail | 49,164 | 21,262 | -57% | 1 | 1 | 0% | 8,245 | 4,037 | -51% | 0 | 0 | — |
case-03 | pass→pass | 10,977 | 12,012 | +9% | 1 | 1 | 0% | 1,782 | 4,096 | +130% | 0 | 0 | — |
case-04 | pass→pass | 8,387 | 4,899 | -42% | 1 | 1 | 0% | 1,407 | 2,930 | +108% | 0 | 0 | — |
case-05 | pass→pass | 14,985 | 8,481 | -43% | 1 | 1 | 0% | 2,020 | 3,096 | +53% | 0 | 0 | — |
case-06 | fail→pass | 7,120 | 12,076 | +70% | 1 | 1 | 0% | 1,043 | 3,558 | +241% | 0 | 0 | — |
case-07 | pass→pass | 10,779 | 20,671 | +92% | 1 | 1 | 0% | 1,474 | 3,982 | +170% | 0 | 0 | — |
case-08 | fail→pass | 6,502 | 3,747 | -42% | 1 | 1 | 0% | 1,022 | 2,737 | +168% | 0 | 0 | — |
case-09 | pass→pass | 31,107 | 8,684 | -72% | 1 | 1 | 0% | 2,461 | 3,386 | +38% | 0 | 0 | — |
case-10 | fail→fail | 20,249 | 21,210 | +5% | 1 | 1 | 0% | 1,662 | 3,687 | +122% | 0 | 0 | — |
case-11 | pass→pass | 12,527 | 18,364 | +47% | 1 | 1 | 0% | 1,859 | 3,684 | +98% | 0 | 0 | — |
case-12 | fail→fail | 13,602 | 9,312 | -32% | 1 | 1 | 0% | 2,576 | 3,617 | +40% | 0 | 0 | — |
case-13 | pass→pass | 10,704 | 12,985 | +21% | 1 | 1 | 0% | 1,865 | 2,955 | +58% | 0 | 0 | — |
case-14 | pass→pass | 31,978 | 3,877 | -88% | 1 | 1 | 0% | 1,373 | 2,793 | +103% | 0 | 0 | — |
case-15 | fail→fail | 23,223 | 3,709 | -84% | 1 | 1 | 0% | 1,205 | 2,727 | +126% | 0 | 0 | — |
case-16 | fail→fail | 26,680 | 20,153 | -24% | 1 | 1 | 0% | 2,789 | 3,809 | +37% | 0 | 0 | — |
case-17 | pass→pass | 13,580 | 11,584 | -15% | 1 | 1 | 0% | 2,426 | 3,287 | +35% | 0 | 0 | — |
case-18 | fail→pass | 14,001 | 6,260 | -55% | 1 | 1 | 0% | 1,910 | 2,840 | +49% | 0 | 0 | — |
case-19 | pass→pass | 12,460 | 4,780 | -62% | 1 | 1 | 0% | 1,812 | 2,734 | +51% | 0 | 0 | — |
DecimalAI ran this skill against gemini-3.6-flash twice over the same eval suite — once with the skill loaded and once without — and compared the two runs case by case. 22 cases were attempted, and 21 counted toward the lift figure. The other 1 produced results that are not comparable between the two arms, so they are excluded from the headline rather than averaged into it. The headline lift of +14 percentage points is the difference between those two pass rates over the 21 comparable cases. 1 case got worse with the skill loaded, and it is included in that figure.
Without the skill loaded, the model failed this case. With it loaded, the same prompt on the same model passed. This is one improved case from the latest verified run; every case, including any that regressed, is in the table above.
Other measured skills in the registry, with their headline benchmark lift.