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

只愿长相守 提交于 2019-12-03 09:27:44

问题


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.


回答1:


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.




回答2:


I don't think it's quite what you're looking for, but it may still be useful - Agner Fog has an object file converter available here:

http://www.agner.org/optimize/#objconv




回答3:


The project biew has been renamed into beye:

http://beye.sourceforge.net




回答4:


I like objdump. I think it comes with the Mingw and/or cygwin distributions.




回答5:


I would recommend HT editor.Though it is lack of a beautiful GUI,it do support a lot of file formats which of course include elf.




回答6:


I've used BIEW before

http://biew.sourceforge.net/

Apparently it can process ELF headers

Support for a-out, arch, coff-386, ELF, MZ, jvmclass, LMF, LE and LX, NE, NLM-386, PharLap, PE, RDOFF, SIS and SISX executable formats.




回答7:


You can look at the ELFSharp project. It's a C# library, not a complete tool, but it's very easy to use and, what is very important, active (look at its github).



来源:https://stackoverflow.com/questions/2221806/any-tool-software-in-windows-for-viewing-elf-file-format

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!