用 Codex 或 Claude 帮你安装 复制这段 Prompt,粘贴到 Codex、Claude 或其他助手里,让它检查 Skill 页面并帮你完成安装。
直接命令不会经过审查 Prompt;运行前请先检查来源。
npx skills add https://github.com/AeonDave/malskill --skill strings命令会保持在同一行。复制前请横向滚动并检查完整内容。
想先保存到本地?可下载 SkillsMP 当前能够提供的文件。
正在显示 SKILL.md
基于 SOC 职业分类
| name | strings |
| description | Auth/lab ref: printable-string extractor for binaries, libraries, firmware blobs, and files of unknown type. |
| compatibility | Linux, macOS, WSL; GNU binutils or BSD variant available on most systems. |
| metadata | {"author":"AeonDave","version":"1.0"} |
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.