Wordlists Verified: Seclists Github
# Clean: remove comments, empty lines, duplicates, and lines <3 chars grep -vE '^(#|;|//|\\|$)' "$file" | \ awk 'length($0) >= 3' | \ sort -u > "$output_file"
Run Jhaddix’s list first, then supplement with commonspeak2 wordlists (not in SecLists but complementary). For Password Spraying & Credential Stuffing: | Wordlist Path | Size | Verification Score | Best For | |---------------|------|--------------------|-----------| | Passwords/Common-Credentials/10-million-password-list-top-1000000.txt | 15MB | ★★★★★ | Modern password cracking | | Passwords/Leaked-Databases/rockyou.txt | 134MB | ★★★★☆ | Legacy systems (over 50% of entries are obsolete) | | Passwords/Common-Credentials/best110.txt | 2KB | ★★★☆☆ | Lockout-avoiding spray |
find $SECLISTS_DIR -type f -name "*.txt" | while read file; do # Create relative path rel_path=$(realpath --relative-to=$SECLISTS_DIR "$file") output_file="$OUTPUT_DIR/$rel_path" mkdir -p $(dirname "$output_file") seclists github wordlists verified
sort -u raw_wordlist.txt > cleaned_wordlist.txt
The Raft wordlists were generated from the Wayback Machine and crawled data from thousands of live sites. They include patterns like api/v1/ , assets/build/ , and static/js/ that legacy lists miss. For Subdomain Enumeration: | Wordlist Path | Size | Verification Score | Best For | |---------------|------|--------------------|-----------| | Discovery/DNS/subdomains-top1million-5000.txt | 5KB | ★★★★★ | Fast scans (high signal-to-noise) | | Discovery/DNS/dns-Jhaddix.txt | 600KB | ★★★★★ | Deep enumeration (the "Jhaddix best guess" list) | | Discovery/DNS/bitquark-subdomains-top100000.txt | 1MB | ★★★★☆ | API-based enumeration | # Clean: remove comments, empty lines, duplicates, and
mkdir -p $OUTPUT_DIR
github.com/danielmiessler/SecLists
rockyou.txt is widely known but contains many passwords from 2009 MySpace and RockYou gaming forums. Use the top 100,000 from HaveIBeenPwned (not in SecLists) for better coverage of 2024 leaks. For Fuzzing (SQLi, XSS, LFI): | Wordlist Path | Size | Verification Score | Best For | |---------------|------|--------------------|-----------| | Fuzzing/sql-injection/auth_bypass.txt | 15KB | ★★★★★ | Login bypass attempts | | Fuzzing/XSS/XSS-40.txt | 50KB | ★★★★★ | DOM XSS detection | | Fuzzing/LFI/LFI-Jhaddix.txt | 6KB | ★★★★★ | Path traversal |