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