Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Any tool/software in windows for viewing ELF file format? [closed]

There are lots of PE file browsers. Here is a list of good ones if you are interested:

PE File format viewers:

  • PE Explorer http://www.pe-explorer.com/
  • PE VIew: http://www.magma.ca/~wjr/
  • PEBrowse Professional http://www.smidgeonsoft.prohosting.com/pebrowse-pro-file-viewer.html
  • PE Browse Professional Interactive - http://www.smidgeonsoft.prohosting.com/pebrowse-pro-interactive-debugger.html

I'm still working on windows & I want to view the ELF files. Are there any tools? I'm googling but couldn't find any till now.

like image 242
norris Avatar asked Sep 04 '25 01:09

norris


1 Answers

readelf and objdump are both excellent utilities if you are on a Unix box. Both are provided by Cygwin.

readelf will give you a good overview of the ELF header information, section headers. You can also use it to get relocation and symbol information. Overall, readelf can give greater detail on the contents of an ELF file.

objdump has some similar features to readelf, but also includes the ability to disassemble sections.

like image 135
bdmcbri Avatar answered Sep 07 '25 21:09

bdmcbri