[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 20 shown

AFL++ tool Linux

Binary / RE Fuzzing

The actively maintained, heavily extended fork of American Fuzzy Lop — coverage-guided mutational fuzzing for finding crashes in binaries and libraries.

afl-fuzz -i in -o out -- ./target @@
visit → added by THUGS(red)

Arjun tool

Fuzzing Red Team Web

Finds hidden HTTP GET/POST parameters on a web endpoint by bruteforcing against a large parameter-name wordlist — the step before you know what to actually inject into.

arjun -u https://target.tld/api/endpoint
visit → added by THUGS(red)

boofuzz tool

Binary / RE Fuzzing Network

Protocol-aware fuzzing framework (fork/successor of Sulley) for building fuzzers against network services and file formats with defined message structures.

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)

Facedancer tool

Fuzzing Hardware

Python framework (with GoodFET/GreatFET/Cynthion hardware backends) for emulating arbitrary USB devices in software, used to fuzz host USB stacks/drivers or spoof a device a host expects.

visit → added by THUGS(red)

feroxbuster tool

Fuzzing Red Team Web

A fast, recursive content-discovery tool written in Rust — automatically dives into discovered directories without needing to be re-run manually, unlike gobuster/dirb.

feroxbuster -u https://target.tld -w wordlist.txt -x php,html,txt
visit → added by THUGS(red)

ffuf tool

CTF Fuzzing Web

A fast web fuzzer written in Go — content discovery, virtual-host fuzzing and parameter fuzzing, all through one flexible FUZZ-keyword syntax.

ffuf -u http://target/FUZZ -w wordlist.txt -mc all -fc 404
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)

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)

Honggfuzz tool Linux

Binary / RE Fuzzing

Google's security-oriented fuzzer that can drive coverage from hardware performance counters as well as compile-time instrumentation, useful when source is unavailable.

honggfuzz -i in -o out -- ./target ___FILE___
visit → added by THUGS(red)

libFuzzer tool Linux

Binary / RE Fuzzing

In-process, coverage-guided fuzzing engine linked directly into an LLVM/Clang target — the standard way to fuzz a single function without forking a process per input.

clang -fsanitize=fuzzer,address target.c -o fuzz && ./fuzz
visit → added by THUGS(red)

Param Miner tool

Fuzzing Red Team Web

PortSwigger's Burp Suite extension for finding hidden, unlinked parameters and headers — including the ones that unlock web-cache-poisoning bugs.

visit → added by THUGS(red)

radamsa tool

Binary / RE Fuzzing

General-purpose test-case mutator that takes sample inputs and spits out mutated variants — a quick way to build a crude fuzzing corpus for a CTF parser challenge.

radamsa -n 1000 -o out-%n.bin sample.bin
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)

syzkaller tool Linux

Binary / RE Fuzzing

Coverage-guided kernel fuzzer built by Google, used to find Linux/Windows/macOS kernel bugs that CTF kernel-pwn challenges are frequently modelled on.

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)

Universal Radio Hacker (URH) tool

Fuzzing Research SDR / RF

GUI workbench for reverse-engineering unknown radio protocols — demodulate, decode and re-encode signals, then fuzz them, without writing GNU Radio flowgraphs by hand.

visit → added by THUGS(red)

WinAFL tool Windows

Binary / RE Fuzzing

Google Project Zero's fork of AFL targeting Windows binaries, using DynamoRIO instrumentation to fuzz closed-source Windows executables and DLLs.

visit → added by THUGS(red)

XSStrike tool

Fuzzing Payloads Red Team Web

A cross-site scripting detection suite that fuzzes parameters with a context-aware payload generator, rather than firing a static payload list at everything.

python3 xsstrike.py -u "https://target.tld/search?q=test"
visit → added by THUGS(red)

zzuf tool Linux

Binary / RE Fuzzing

Transparent input fuzzer that randomly flips bits in a program's input stream via LD_PRELOAD, a quick way to probe robustness without instrumenting the target.

zzuf -s 0:100 ./parser input.bin
visit → added by THUGS(red)