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

binvis.io tool

Binary / RE CTF Steganography

Visualizes a binary file as a space-filling curve image, making repeated structure, embedded files, and anomalies visually obvious — useful both for RE triage and for spotting a likely stego carrier.

visit → added by THUGS(red)

gifshuffle tool

CTF Steganography

Hides a message inside a GIF by shuffling its colour palette order rather than touching pixel data, leaving the visible image completely unchanged.

gifshuffle -p "password" cover.gif out.gif secret.txt
visit → added by THUGS(red)

jsteg tool

CTF Steganography

Simple JPEG steganography tool for hiding and revealing data in the DCT coefficients of a JPEG file — a common CTF format that plain LSB-in-PNG tools do not handle.

jsteg reveal in.jpg out.txt
visit → added by THUGS(red)

List extended attributes possibly hiding data one-liner Linux

Forensics Steganography

Extended attributes are an easy-to-overlook place to smuggle a small payload or marker outside a file normal content stream.

find / -xdev -exec getfattr -d {} \; 2>/dev/null | grep -B1 '^user\.'
added by THUGS(red)

MP3Stego tool

CTF Steganography

Hides data inside an MP3 file during the compression process itself, rather than after encoding — a common source for CTF "hidden data in this audio file" challenges.

visit → added by THUGS(red)

OpenStego tool

Steganography

Open-source steganography tool for hiding data inside images and for invisible-watermark embedding, with both a GUI and a CLI.

visit → added by THUGS(red)

OutGuess tool

CTF Steganography

Universal steganographic tool that hides data in JPEG (and other) images while preserving the cover's statistical properties, making it harder to detect than naive LSB embedding.

outguess -k "key" -d hidden.txt cover.jpg stego.jpg
visit → added by THUGS(red)

pngcheck tool

CTF Forensics Steganography

Validates a PNG file's chunk structure and reports corruption, unusual/nonstandard chunks or data appended after the IEND marker — a quick check before hunting for hidden data manually.

pngcheck -v suspicious.png
visit → added by THUGS(red)

SNOW tool

CTF Steganography

Whitespace steganography tool — hides a message in the trailing spaces and tabs at the end of text lines, invisible unless you go looking for it (or view the file with tabs shown).

snow -C -m "secret" cover.txt stego.txt
visit → added by THUGS(red)

Sonic Visualiser tool

CTF Steganography

Audio analysis application with a detailed spectrogram view, the standard way to visually reveal a message or image hidden in an audio file's frequency content.

visit → added by THUGS(red)

Spectrology tool

CTF Steganography

Encodes a hidden image or message into an audio file such that it only becomes visible as a spectrogram — the tool behind the "load the WAV in Sonic Visualiser" CTF trope.

python spectrology.py -i secret.png -o out.wav
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)

StegExpose tool

CTF Steganography

Steganalysis tool that scores a set of PNG/BMP images for likely LSB steganography, useful for triaging which of many images in a CTF archive is worth digging into by hand.

java -jar StegExpose.jar images/
visit → added by THUGS(red)

steghide tool

CTF Steganography

A steganography tool that hides data inside JPEG, BMP, WAV and AU files, with optional passphrase-based encryption — the classic CTF stego first-try.

steghide extract -sf image.jpg
visit → added by THUGS(red)

stegoVeritas tool

CTF Steganography

Steganography toolkit that automates the usual checklist against an image — metadata, LSB extraction, bit-plane dumps, colour-channel splits, and running other steg tools for you.

stegoveritas.py image.png
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)

StegSolve tool

CTF Steganography

Java GUI for stepping through bit planes, colour channels, palettes and frames of an image — the classic manual-inspection tool for image steganography before scripting anything.

java -jar stegsolve.jar
visit → added by THUGS(red)

WavSteg tool

CTF Steganography

LSB steganography tool for hiding and extracting data in WAV audio files, part of a small suite alongside a matching PNG LSB tool.

python3 WavSteg.py -r -s cover.wav -o out.txt -n 2
visit → added by THUGS(red)

zsteg tool

CTF Steganography

Detects hidden data stashed in the low bits of PNG and BMP pixel data — the standard second stego check after steghide comes up empty on an image.

zsteg -a image.png
visit → added by THUGS(red)