2023-12-18 12:57:12 +01:00
|
|
|
# strings
|
|
|
|
|
|
|
|
> Vind printbare strings in een object bestand of binary.
|
|
|
|
> Meer informatie: <https://manned.org/strings>.
|
|
|
|
|
2024-06-18 22:00:00 +02:00
|
|
|
- Toon alle strings in een binary:
|
2023-12-18 12:57:12 +01:00
|
|
|
|
|
|
|
`strings {{pad/naar/bestand}}`
|
|
|
|
|
|
|
|
- Limiteer resultaten van strings met minimaal n karakters lang:
|
|
|
|
|
2025-06-02 21:57:53 +00:00
|
|
|
`strings {{[-n|--bytes]}} {{n}} {{pad/naar/bestand}}`
|
2023-12-18 12:57:12 +01:00
|
|
|
|
|
|
|
- Prefix ieder resultaat met de offset in het bestand:
|
|
|
|
|
2025-06-02 21:57:53 +00:00
|
|
|
`strings {{[-t|--radix]}} d {{pad/naar/bestand}}`
|
2023-12-18 12:57:12 +01:00
|
|
|
|
|
|
|
- Prefix ieder resultaat met de offset in het bestand als hexadecimaal:
|
|
|
|
|
2025-06-02 21:57:53 +00:00
|
|
|
`strings {{[-t|--radix]}} x {{pad/naar/bestand}}`
|