objectif
Trouver des indices (versions, URLs, messages) dans un exécutable ou un dump.
code minimal
strings -n 8 ./app | head
utilisation
# chercher des URLs
strings -n 5 ./app | grep -Eo 'https?://[^ ]+' | sort -u
variante(s) utile(s)
# forcer l'encodage UTF-16LE
strings -el fichier.bin | head
notes
- outil heuristique; faux positifs possibles.
- complémentaire à
objdumpetxxd.