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

Bellingcat's Online Investigation Toolkit tool

Cheat Sheets OSINT Research

Bellingcat's public, community-maintained spreadsheet of OSINT tools and resources spanning geolocation, archives, social media and satellite imagery, used in their open-source investigations.

visit → added by THUGS(red)

CTF Field Guide tool

Cheat Sheets CTF Research

Trail of Bits' long-running reference covering pwn, reversing, crypto and steganography techniques for CTF play — dated in places but still a solid first read for each category.

visit → added by THUGS(red)

dCode.fr tool

Cheat Sheets Ciphers CTF

Enormous library of online solvers and identifiers for classical ciphers, encodings and CTF-favourite puzzle formats — often the fastest way to identify what you are even looking at.

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)

Explainshell tool

Cheat Sheets

Pastes a shell command and breaks down what every flag and pipe segment does against the real man page — handy for decoding an unfamiliar one-liner found in a writeup or a payload.

visit → added by THUGS(red)

Google Hacking Database (GHDB) tool

Cheat Sheets OSINT Recon

Exploit-DB's long-running, categorised archive of Google dorks for finding exposed files, login portals, error messages and vulnerable systems via search-engine indexing.

visit → added by THUGS(red)

Grab every common DNS record type for a domain in one pass one-liner

Cheat Sheets DNS Recon

One loop instead of six separate dig invocations when you want the full picture of a domain's A/AAAA/MX/TXT/NS/SOA/CNAME records.

for t in A AAAA MX TXT NS SOA CNAME; do echo "== $t =="; dig +short example.com "$t"; done
added by THUGS(red)

GTFOArgs tool Linux

Cheat Sheets Red Team

Companion project to GTFOBins cataloguing argument-injection tricks — binaries that can be abused not through their own function but by smuggling attacker-controlled flags into their invocation.

visit → added by THUGS(red)

HackTricks tool

Cheat Sheets Red Team Whitebox

A community-maintained methodology wiki covering pentesting techniques across web, cloud, AD, mobile and binary exploitation — organised as a checklist you actually work through during an engagement.

visit → added by THUGS(red)

how2heap tool Linux

Binary / RE Cheat Sheets CTF

Shellphish's collection of annotated, runnable examples of glibc heap exploitation techniques (fastbin dup, unsafe unlink, tcache poisoning and more) across libc versions — the standard reference for learning heap pwn.

visit → added by THUGS(red)

LOLBAS tool Windows

Cheat Sheets LOLBAS / LOTL Red Team

The Windows counterpart to GTFOBins — signed, native Windows binaries and scripts that can be repurposed to download, execute or exfiltrate without dropping extra tooling on disk.

visit → added by THUGS(red)

LOLDrivers tool Windows

Cheat Sheets LOLBAS / LOTL Malware

Catalogue of known vulnerable and malicious signed Windows kernel drivers (the "bring your own vulnerable driver" list) used for EDR-killing and kernel-level attacks.

visit → added by THUGS(red)

OSINT Framework tool

Cheat Sheets OSINT Recon

Not a tool but a curated, clickable index of OSINT tools and resources organised by category — the map most people start from before they know which specific tool they need.

visit → added by THUGS(red)

OSINT Techniques tool

Cheat Sheets OSINT Recon

Michael Bazzell's long-running OSINT resource site, companion to the "OSINT Techniques" book, with categorised tool links and methodology notes kept current as sites change.

visit → added by THUGS(red)

OWASP Cheat Sheet Series tool

Cheat Sheets Defensive Web

OWASP's collection of concise, defensive "how to actually do this correctly" references (auth, session management, input validation, crypto storage) rather than attack techniques.

visit → added by THUGS(red)

PasteBinDorking (Google dork approach to paste sites) one-liner

Cheat Sheets OSINT Recon

Search-engine dork pattern for finding leaked credentials or source snippets accidentally posted to public paste sites for a target domain.

site:pastebin.com "example.com" (password OR api_key OR secret)
# repeat against site:ghostbin.com, site:paste.ee, site:rentry.co for broader paste-site coverage
added by THUGS(red)

PayloadsAllTheThings tool

Cheat Sheets Payloads Web

A huge, actively maintained collection of payloads and bypass techniques for practically every vulnerability class — the reference every web pentester keeps a tab open to.

visit → added by THUGS(red)

PentestMonkey Reverse Shell Cheat Sheet tool

Cheat Sheets Payloads Red Team

The canonical one-page reference of reverse shell one-liners in every language likely to be sitting on a compromised box — old, still correct, still bookmarked by everyone.

visit → added by THUGS(red)

revshells.com tool

Cheat Sheets Payloads Red Team

Web-based reverse shell generator covering many languages/encodings at once, auto-filling your IP/port and offering URL-encoding and MSFVenom variants without hand-editing a template.

visit → added by THUGS(red)

Shodan Dorking cheat sheet (Shodan filter guide) tool

Cheat Sheets Device Search OSINT Recon

Shodan's own reference for its search filter syntax (product, port, org, ssl.cert, etc.) — essential for turning a vague "find exposed X" into a precise query.

visit → added by THUGS(red)

WADComs tool Windows

Cheat Sheets Enumeration Red Team

GTFOBins-style interactive cheat sheet for offensive Windows/Active Directory commands (PowerShell, WMI, native binaries) covering recon through lateral movement.

visit → added by THUGS(red)