Page 1 of 1

ELF informations

Posted: Mon Jun 30, 2008 5:04 am
by Jeko
How can I see informations about ELF files? (sections, entry point, symbols, etc.)
I think with objdump, but I'm not sure.

Re: ELF informations

Posted: Mon Jun 30, 2008 5:11 am
by JackScott
Try:

Code: Select all

objdump -x [file]

Re: ELF informations

Posted: Mon Jun 30, 2008 5:12 am
by AJ
Yes, it's objdump:

Code: Select all

objdump -x [binary] > [outputfile]
With the -d switch, you also get a disassembly. If you use the --help switch, you'll get a list of params.

Cheers,
Adam

Re: ELF informations

Posted: Sat Jul 05, 2008 12:00 am
by jgraef
Hi,

Code: Select all

$ readelf