Display string included in elf file

4.5k Views Asked by At

I am trying to analyze elf files. Is there a way to display all the string literals contained in the .rodata section of the elf file?

1

There are 1 best solutions below

0
On

Is there a way to display all the string literals contained in the .rodata section of the elf file?

See man strings.

You could also use readelf -x.rodata or objdump -sj.rodata