[THUGS(red)]

Tools

Everything the team reaches for — CTF, red team, blue team, OSINT, forensics, wireless and living-off-the-land, plus the one-liners we retype every engagement. Search, filter by tag, and click any code block to copy it.

1054
entries
37
tags in use
3h ago
last added
clear
tools.db 15 shown

altdns tool

DNS Recon Wordlists

Generates subdomain permutations and alterations from a wordlist of common patterns (dev, staging, api-v2) and resolves the results.

altdns -i subdomains.txt -o data_output -w words.txt -r -s results.txt
visit → added by THUGS(red)

Bopscrk tool

Brute Force Wordlists

Interactive wordlist generator that builds candidate passwords from personal-info keywords plus configurable leet/case/special-character mutations, similar in spirit to CUPP with more mangling options.

bopscrk -w words.txt
visit → added by THUGS(red)

CeWL tool

Red Team Web Wordlists

Spiders a website and builds a custom wordlist from the words it finds — useful for generating a target-specific password/username dictionary rather than relying on rockyou alone.

cewl https://target.tld -d 2 -m 5 -w wordlist.txt
visit → added by THUGS(red)

Check a hash against Pwned Passwords (k-anonymity) one-liner

Hashing OSINT Wordlists

Queries Have I Been Pwned's Pwned Passwords range API with only a 5-character SHA-1 prefix, so the full password/hash never leaves your machine, and greps the response for the suffix.

hash=$(printf %s 'password123' | sha1sum | tr 'a-z' 'A-Z' | cut -c1-40)
curl -s "https://api.pwnedpasswords.com/range/${hash:0:5}" | grep -i "${hash:5}"
visit → added by THUGS(red)

CrackStation tool

Hashing Wordlists

Free online lookup of a hash against a precomputed table of billions of cracked passwords — worth trying before spinning up hashcat for an unsalted common hash.

visit → added by THUGS(red)

CUPP tool

Brute Force OSINT Wordlists

Common User Passwords Profiler — interviews you about a target's personal details (name, pet, birthdate) and generates a targeted candidate password list from the answers.

cupp -i
visit → added by THUGS(red)

FuzzDB tool

Fuzzing Web Wordlists

Dictionaries of attack payloads and predictable filenames/paths for discovery and fuzzing (injection strings, common backup/config filenames, error-message patterns), maintained separately from SecLists.

visit → added by THUGS(red)

gotator tool

DNS Recon Wordlists

Subdomain-permutation generator similar in purpose to altdns, with adjustable permutation depth and its own wordlist format.

gotator -sub subdomains.txt -perm permutations.txt -depth 1 -numbers 3
visit → added by THUGS(red)

Mentalist tool

Brute Force Wordlists

GUI wordlist generator that lets you build mangling rule chains (leetspeak, appended years, case toggling) visually and export them for Hashcat/John.

visit → added by THUGS(red)

pipal tool

Brute Force Wordlists

Analyses a leaked or cracked password list and reports the most common base words, lengths and patterns — used to tune a follow-up wordlist or mangling rules against the same target.

ruby pipal.rb cracked.txt
visit → added by THUGS(red)

Probable Wordlists tool

Brute Force Wordlists

Password lists sorted by real-world frequency (most-likely-first) rather than alphabetically, so a time-boxed cracking run tries the probable candidates before the unlikely ones.

visit → added by THUGS(red)

rockyou.txt tool

Brute Force Wordlists

The most famous password wordlist in the field — 14 million real passwords leaked from the 2009 RockYou breach, still the default dictionary for a first hashcat/John pass.

visit → added by THUGS(red)

RSMangler tool

Brute Force Wordlists

Word-mangling tool (leetspeak substitutions, case flips, appended years/symbols) that expands a small seed wordlist into a much larger set of realistic password variants.

rsmangler --file words.txt > mangled.txt
visit → added by THUGS(red)

SecLists tool

Brute Force Fuzzing Wordlists

The single most-used wordlist collection in the field — usernames, passwords, URLs, fuzzing payloads and more, curated and maintained, and bundled by default in Kali.

visit → added by THUGS(red)

Weakpass tool

Brute Force Wordlists

Site hosting large curated password wordlists (compiled from breaches and generated sets) plus a hash-lookup search, aimed squarely at cracking rather than fuzzing.

visit → added by THUGS(red)