Is there any linux command to extracts all the ascii strings from an executable or other binary file? I suppose I could do it with a grep, but I remember hearing somewhere that such a command existed?
|
feedback
|
|
The command you are looking for is Its name is quite self-explanatory, it retrieve any printable string from a given file.
| ||||
|
feedback
|
|
The od command can do this:
| |||||||
feedback
|
|
The strings command is the way to go for this particular type of problems. Sometimes you also have to pipe it out to grep. For example:
| |||
|
feedback
|