Any tool/software in windows for viewing ELF file

2020-02-21 01:44发布

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

PE File format viewers:

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.

7条回答
地球回转人心会变
2楼-- · 2020-02-21 02:14

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楼-- · 2020-02-21 02:21

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).

查看更多
欢心
4楼-- · 2020-02-21 02:22

The project biew has been renamed into beye:

http://beye.sourceforge.net

查看更多
霸刀☆藐视天下
5楼-- · 2020-02-21 02:26

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.

查看更多
倾城 Initia
6楼-- · 2020-02-21 02:28

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

查看更多
女痞
7楼-- · 2020-02-21 02:36

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.

查看更多
登录 后发表回答