[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
2h ago
last added
clear
tools.db 50 shown

aircrack-ng tool Linux

Brute Force Red Team Wireless / WiFi

The classic WiFi security auditing suite — packet capture, deauthentication and injection, and WEP/WPA-PSK key cracking, in one tightly integrated toolset.

airmon-ng start wlan0\nairodump-ng wlan0mon\naircrack-ng -w rockyou.txt capture.cap
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)

Brute-force an unknown UART baud rate one-liner Linux

Brute Force Hardware

When a UART header is identified but the baud rate is not, quickly cycle through the common rates and watch for readable boot text instead of guessing one at a time.

for baud in 9600 19200 38400 57600 115200; do
  echo "--- trying $baud ---"
  timeout 3 picocom -b $baud -q /dev/ttyUSB0
done
added by THUGS(red)

BruteSpray tool Linux

Brute Force

Takes an Nmap/Masscan GNMAP/XML output and automatically brute-forces every service it recognises using Medusa under the hood — no manual target/service mapping needed.

brutespray --file scan.gnmap -u users.txt -p rockyou.txt
visit → added by THUGS(red)

bucket_finder tool

Brute Force Cloud Recon

One of the original S3-bucket-name brute-forcing tools — checks a wordlist of candidate names for existence and public read access.

ruby bucket_finder.rb wordlist.txt
visit → added by THUGS(red)

Bulk-resolve a subdomain wordlist with massdns one-liner Linux

Brute Force DNS Recon

Resolves a large subdomain candidate list against a set of trusted public resolvers far faster than looping dig/host over each name.

massdns -r resolvers.txt -t A -o S -w results.txt subdomains.txt
visit → added by THUGS(red)

Bully tool Linux

Brute Force Wireless / WiFi

C reimplementation of the WPS brute-force PIN attack (an alternative to Reaver with different timing/retry behaviour against flaky APs).

bully -b AA:BB:CC:DD:EE:FF wlan0mon
visit → added by THUGS(red)

changeme tool

Brute Force Enumeration

Scans a network for services still running their vendor-default credentials, using a large built-in database of default logins across routers, cameras, admin panels and more.

changeme 10.10.10.0/24
visit → added by THUGS(red)

CredMaster tool Linux

Brute Force Cloud Red Team

Rotates password-spray traffic through cloud provider IPs (via FireProx-style API Gateway proxying) so login attempts against Okta/O365/OWA are not all seen from one source IP.

python3 credmaster.py -m O365 -u users.txt -p Summer2026! -s okta
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)

DefaultCreds-cheat-sheet tool

Brute Force Cheat Sheets

A maintained, searchable reference of default usernames/passwords for hundreds of network appliances, admin panels and IoT devices, saving a wiki-diving detour mid-engagement.

visit → added by THUGS(red)

DIRB tool

Brute Force Fuzzing Web

A web content scanner that looks for existing (and hidden) objects by bruteforcing a wordlist against a target — one of the original tools in this space, still bundled in Kali.

dirb http://target/ /usr/share/wordlists/dirb/common.txt
visit → added by THUGS(red)

DomainPasswordSpray tool Windows

Brute Force Red Team

Pulls the live user list and password policy straight from Active Directory before spraying, so lockout thresholds are respected automatically.

Invoke-DomainPasswordSpray -Password Summer2026! -OutFile sprayed.txt
visit → added by THUGS(red)

fcrackzip tool

Brute Force CTF Hashing

Brute-force and dictionary password cracker for ZipCrypto-protected archives — the go-to before reaching for bkcrack's known-plaintext approach.

fcrackzip -u -D -p rockyou.txt secret.zip
visit → added by THUGS(red)

GCPBucketBrute tool

Brute Force Cloud

Enumerates Google Cloud Storage bucket names for a target and checks the current (or anonymous) credentials for read/write/delete access on anything found.

python3 gcpbucketbrute.py -k target
visit → added by THUGS(red)

gobuster tool

Brute Force Fuzzing Web

A fast Go-based bruteforcer for directories/files, DNS subdomains, virtual hosts and S3 buckets — the everyday content-discovery default for a lot of testers.

gobuster dir -u http://target -w wordlist.txt -x php,txt,bak
visit → added by THUGS(red)

hashcat tool

Brute Force CTF Hashing

The world's fastest password-recovery tool — GPU-accelerated cracking across hundreds of hash modes, from a straight dictionary attack to rule-based and mask attacks.

hashcat -m 1000 -a 0 hashes.txt rockyou.txt
visit → added by THUGS(red)

hcxdumptool tool Linux

Brute Force Red Team Wireless / WiFi

Captures WPA/WPA2 handshakes and PMKIDs straight off the air (including from clientless APs) without needing a connected station to deauth.

sudo hcxdumptool -i wlan0mon -o capture.pcapng --enable_status=1
visit → added by THUGS(red)

hcxtools tool Linux

Brute Force Hashing Wireless / WiFi

Converts hcxdumptool/airodump-ng captures into hashcat/John-crackable formats (22000, PMKID) — the modern replacement for the old cap2hccapx pipeline.

hcxpcapngtool -o hashes.22000 capture.pcapng
visit → added by THUGS(red)

Hydra tool

Brute Force Network Red Team

A parallelised network login cracker supporting dozens of protocols (SSH, FTP, HTTP forms, RDP, SMB…) — the go-to tool the moment you have a login form and a wordlist.

hydra -l admin -P passwords.txt ssh://10.10.10.10
visit → added by THUGS(red)

John the Ripper tool

Brute Force CTF Hashing

A long-standing password cracker supporting hundreds of hash and cipher types, with the community "jumbo" fork adding formats and features far beyond the base distribution.

john --wordlist=rockyou.txt hashes.txt
visit → added by THUGS(red)

JTAGulator tool

Brute Force Hardware

Hardware tool that brute-forces which pins on an unlabelled header are JTAG or UART, and at what configuration, before any actual debugging can start.

picocom /dev/ttyUSB0 -b 115200
visit → added by THUGS(red)

jwt-cracker tool

Brute Force Web

Brute-forces the HMAC secret used to sign a JWT (HS256/HS384/HS512), turning a weak signing key into a fully forgeable token.

jwt-cracker eyJhbGciOi... abcdefghijklmnopqrstuvwxyz 6
visit → added by THUGS(red)

Kerbrute tool

Brute Force Enumeration Offensive Red Team

Quickly bruteforces and enumerates valid Active Directory usernames via Kerberos pre-authentication — much quieter than an LDAP bind sweep since failed guesses barely touch the event log.

kerbrute userenum -d domain.local --dc 10.10.10.10 users.txt
visit → added by THUGS(red)

MailSniper tool Windows

Brute Force Offensive Red Team

Searches Exchange/Office 365 mailboxes for sensitive strings (passwords, "VPN", etc) and can password-spray OWA/EWS — post-compromise mailbox pillaging in one PowerShell module.

Invoke-SelfSearch -Mailbox [email protected] -Terms "password"
visit → added by THUGS(red)

Medusa tool Linux

Brute Force

Fast, modular, parallel network login brute-forcer supporting a wide range of services (SSH, FTP, SMB, MySQL, RDP, VNC, etc), the classic alternative to Hydra.

medusa -h 10.10.10.5 -u admin -P rockyou.txt -M ssh
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)

MSOLSpray tool

Brute Force Cloud Red Team

Password sprays Microsoft Online (Azure AD/O365) accounts and, from the login response, distinguishes valid credentials from lockouts, MFA prompts and disabled accounts.

python3 msolspray.py --userlist users.txt --password Summer2026!
visit → added by THUGS(red)

Ncrack tool

Brute Force

High-speed network authentication cracker from the Nmap project, built for large-scale login testing (RDP, SSH, VNC, WinRM, etc) with timing profiles similar to Nmap's.

ncrack -p rdp --user admin -P rockyou.txt 10.10.10.5
visit → added by THUGS(red)

NetExec tool

Brute Force Enumeration Red Team

Actively-maintained fork/successor of CrackMapExec — swiss-army-knife for AD network protocols: authentication spraying, command execution, hash dumping and share enumeration over SMB/WinRM/LDAP/MSSQL/RDP/SSH.

nxc smb 10.10.10.0/24 -u users.txt -p pass --shares
visit → added by THUGS(red)

o365spray tool

Brute Force Cloud Enumeration

Username enumeration and password spraying against Office 365/Azure AD, supporting several login endpoints so it keeps working when Microsoft tweaks one response format.

python3 o365spray.py --validate -d corp.com
visit → added by THUGS(red)

Patator tool Linux

Brute Force

Generic, module-based brute-forcer (dozens of modules — SSH, SMTP, HTTP forms, ZIP passwords, DNS, etc) written to avoid the false-positive/false-negative quirks of other bruteforcers.

patator ssh_login host=10.10.10.5 user=admin password=FILE0 0=rockyou.txt
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)

Pixiewps tool Linux

Brute Force Cryptography Wireless / WiFi

Offline WPS PIN recovery from a single handshake exchange (the "pixie dust" attack) against APs with weak random-number generation, instead of an online brute force.

pixiewps -e <PKE> -r <PKR> -s <E-Hash1> -z <E-Hash2> -a <Authkey> -n <E-Nonce>
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)

puredns tool

Brute Force DNS Recon

Wraps massdns for reliable bulk DNS resolving and subdomain brute-forcing, with automatic wildcard detection so a wildcard DNS record does not flood results with false positives.

puredns bruteforce wordlist.txt example.com -r resolvers.txt
visit → added by THUGS(red)

Reaver (t6x fork) tool Linux

Brute Force Wireless / WiFi

The original online WPS PIN brute-forcer, kept alive as a community fork after the upstream project went unmaintained; still the reference implementation the WPS attack is named after.

reaver -i wlan0mon -b AA:BB:CC:DD:EE:FF -vv
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)

Ruler tool

Brute Force Red Team

Abuses Exchange client access protocols (MAPI/HTTP, Autodiscover) for brute-forcing and, historically, for gaining remote code execution via malicious Outlook rules/forms.

ruler --domain corp.com brute --users users.txt --passwords pass.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)

shuffledns tool

Brute Force DNS Recon

ProjectDiscovery wrapper around massdns for subdomain brute-forcing and resolution, built to plug into the rest of their recon toolchain.

shuffledns -d example.com -w wordlist.txt -r resolvers.txt
visit → added by THUGS(red)

Spray365 tool

Brute Force Cloud

Password-spraying tool targeting Microsoft 365 across multiple undocumented authentication endpoints, built to keep working as Microsoft changes its login flow.

spray365 spray --credential-list creds.txt
visit → added by THUGS(red)

SprayingToolkit tool Linux

Brute Force Red Team

Wraps password spraying against Lync/Skype for Business and OWA with sane delays and lockout-avoidance logic baked in.

./atomizer.py owa 10.10.10.5 users.txt Summer2026!
visit → added by THUGS(red)

StegCracker tool

Brute Force CTF Steganography

Dictionary brute-forcer for steghide-protected files, wrapping steghide itself in a loop over a wordlist — Stegseek is the faster modern replacement for the same job.

stegcracker image.jpg rockyou.txt
visit → added by THUGS(red)

Stegseek tool

Brute Force CTF Steganography

Extremely fast steghide passphrase cracker (thousands of times faster than brute-forcing steghide itself) that tries an entire wordlist against a JPEG/BMP/WAV/AU carrier.

stegseek carrier.jpg rockyou.txt
visit → added by THUGS(red)

TREVORspray tool

Brute Force Cloud Red Team

Modular password-spraying tool with built-in modules for O365, Okta, OWA and more, plus optional proxying and Slack notifications for long-running sprays.

trevorspray -U users.txt -p Summer2026! --module o365enum
visit → added by THUGS(red)

Turbo Intruder tool

Brute Force Fuzzing Web

High-throughput HTTP request engine (Python-scripted) built for large brute-force jobs and race-condition testing that would be too slow through a regular intercepting proxy.

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)

Wifite2 tool Linux

Brute Force Red Team Wireless / WiFi

Python rewrite of the "point it at every visible network" Wi-Fi auditing wrapper — automates monitor mode, handshake/PMKID capture and WPS attacks via aircrack-ng/hcxtools/reaver/bully.

sudo wifite --dict /path/to/wordlist.txt
# target one BSSID only:
sudo wifite -e "Target-SSID" --dict wordlist.txt
visit → added by THUGS(red)