可以,而且很常用。
strings 是 Debian / Linux 下非常基础的取证工具之一,常用于从二进制文件、内存镜像、磁盘镜像中提取可读字符串,辅助安全分析和取证。
strings malware.bin
dd、E01)直接扫描:strings disk.img | grep -i password
可发现:
虽然专业内存取证用 volatility,但:
strings memory.dump
可快速发现:
strings -n 8 file
strings -e l file # 16-bit little endian
strings file | grep -E "http|ftp|\.exe"
strings -t x file
strings 不是专业取证工具,存在不足:
binwalkforemostautopsyvolatilityexiftool✅ Debian 的 strings 可以用于取证
✅ 特别适合快速初步分析
❌ 不适合作为唯一取证手段
如果你愿意,我可以: