offensive-tools/rev/strings/SKILL.md
Auth/lab ref: printable-string extractor for binaries, libraries, firmware blobs, and files of unknown type.
npx skillsauth add aeondave/malskill stringsInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
The fastest first question in reversing is often: what human text escaped alive?
Use strings when you need to:
# Default printable-string extraction
strings ./sample.bin
# Show offsets in hex
strings -t x ./sample.bin
# Require longer strings to reduce noise
strings -n 8 ./sample.bin
strings -a -n 6 ./sample.bin | grep -iE "flag|http|token|password|/bin/|cmd.exe"
strings -a -t x ./sample.bin | grep -i libc
strings -a -e l ./sample.bin
strings -a -e b ./sample.bin
strings -f -a *.so
-a is a safer default when you want to scan the whole file, not only data sections.-t x with objdump, gdb, or a GUI disassembler for contextual follow-up.strings can produce seductive nonsense on compressed or encrypted data.No bundled scripts/, references/, or assets/.
Use the platform man strings page for encoding flags and variant-specific behavior.
development
Auth/lab ref: Unicorn Engine CPU-only emulation for shellcode, decryptors, custom VM handlers, instruction tracing, memory hooks, and register-level experiments.
development
Auth/lab ref: Renode board and SoC simulation for MCU/RTOS firmware, UART/GPIO/peripheral modeling, GDB remote debugging, REPL platforms, and RESC scripts.
development
Auth/lab ref: Qiling OS-layer binary emulation for PE/ELF/Mach-O/UEFI/shellcode with rootfs, syscall/API hooks, filesystem mapping, and runtime patching.
databases
Auth/lab ref: QEMU user-mode and full-system emulation for cross-arch binaries, firmware, kernels, disks, serial consoles, networking, and GDB stubs.