views:

686

answers:

6

Hello,

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.

+1  A: 

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

GregS
Amen to that. Oh, and IDA Pro ain't half-bad either for looking at elf files ;)
joveha
A: 

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.

Jichao
A: 

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

PhiS
A: 

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.

petantik
A: 

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.

bdmcbri
+1  A: 

The project biew has been renamed into beye:

http://beye.sourceforge.net

Guru Kas