CTF & forensics
Strings extractor
Pull every printable text run out of any binary — like Unix `strings`, but in your browser. ASCII and UTF-16, offsets, live filter, and CTF pattern highlighting. Nothing is uploaded.
Drop any fileBinary, executable, image, dump — anything
Any fileFrequently asked
What is this for?
Finding readable text hidden in binaries — flags, URLs, keys, config, error messages. It is a staple of CTF and reverse-engineering, and here it runs locally so the file never leaves your machine.
ASCII and UTF-16?
Yes. Windows binaries often store text as UTF-16LE (a character followed by a null byte); we scan both so you do not miss wide-character strings. Rows tagged flag/url/key match common patterns of interest.