Dissecting managed PE file (EXE or DLL)

  • Thread starter Thread starter Guest
  • Start date Start date
G

Guest

Hell all,

I m just curious to know whether there is any tools/utilities through which
I can open a managed EXE file and see such details as PE hader, .text and
idata section, CLR header, IL, Metadata etc. while ILASM can only show
manifests and IL code, i wonder how one can see sections like .text and
..section contained inside a managed PE file.

thanks
pradeep_tp
 
my apologies for making spelling mistake in the word "Hello". "Hell" should
read "Hello". I wish there was some means of editing the posts here.
 
pradeep_TP said:
Hell all,

I m just curious to know whether there is any tools/utilities through which
I can open a managed EXE file and see such details as PE hader, .text and
idata section, CLR header, IL, Metadata etc. while ILASM can only show
manifests and IL code, i wonder how one can see sections like .text and
.section contained inside a managed PE file.

thanks
pradeep_tp
Check out PE Explorer - http://www.heaventools.com. Not free, but works well with managed files.
Marcus
 
I m just curious to know whether there is any tools/utilities through which
I can open a managed EXE file and see such details as PE hader, .text and
idata section, CLR header, IL, Metadata etc. while ILASM can only show
manifests and IL code, i wonder how one can see sections like .text and
.section contained inside a managed PE file.

One that I came across recently is CFF Explorer at
http://pmode.net/CFF.php. I haven't actually tried it yet but it looks
promising and it's free.

Remotesoft has a similar tool at
http://www.remotesoft.com/dotexplorer/index.html

Dumpbin.exe included with the Platform SDK and VS may also be useful.


Mattias
 
Back
Top