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
White-box auditing methodology for AI-generated ('vibe-coded') applications. Focuses on modern stack misconfigurations (Supabase, Next.js, Vercel).
development
Hybrid AI/Deterministic SAST methodology for discovering zero-day vulnerabilities in source code. Orchestrates structural search with AI-driven data flow and sink validation.
development
Auth assessment: hardware/embedded methodology; UART/JTAG/SWD/SPI/I2C, firmware extraction, boot/debug paths, embedded OS evidence.
devops
Container methodology: Identifying containerization limits, Docker/K8s misconfigurations, and executing escapes to the host node.