2025-03-14 21:59:59 -06:00
|
|
|
# strings
|
|
|
|
|
|
|
|
|
|
> Find printable strings in an object file or binary.
|
|
|
|
|
> More information: <https://manned.org/strings>.
|
|
|
|
|
|
|
|
|
|
- Print all strings in a binary:
|
|
|
|
|
|
|
|
|
|
`strings {{path/to/file}}`
|
|
|
|
|
|
|
|
|
|
- Limit results to strings at least n characters long:
|
|
|
|
|
|
2025-05-08 12:26:01 -06:00
|
|
|
`strings {{[-n|--bytes]}} {{n}} {{path/to/file}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Prefix each result with its offset within the file:
|
|
|
|
|
|
2025-05-08 12:26:01 -06:00
|
|
|
`strings {{[-t|--radix]}} d {{path/to/file}}`
|
2025-03-14 21:59:59 -06:00
|
|
|
|
|
|
|
|
- Prefix each result with its offset within the file in hexadecimal:
|
|
|
|
|
|
2025-05-08 12:26:01 -06:00
|
|
|
`strings {{[-t|--radix]}} x {{path/to/file}}`
|