How can I see informations about ELF files? (sections, entry point, symbols, etc.)
I think with objdump, but I'm not sure.
ELF informations
ELF informations
Rewriting virtual memory manager - Working on ELF support - Working on Device Drivers Handling
http://sourceforge.net/projects/jeko - Jeko Operating System
http://sourceforge.net/projects/jeko - Jeko Operating System
- JackScott
- Member
- Posts: 1037
- Joined: Thu Dec 21, 2006 3:03 am
- Location: Hobart, Australia
- Mastodon: https://aus.social/@jackscottau
- Matrix: @JackScottAU:matrix.org
- GitHub: https://github.com/JackScottAU
- Contact:
Re: ELF informations
Try:
Code: Select all
objdump -x [file]
Re: ELF informations
Yes, it's objdump:
With the -d switch, you also get a disassembly. If you use the --help switch, you'll get a list of params.
Cheers,
Adam
Code: Select all
objdump -x [binary] > [outputfile]
Cheers,
Adam