oneat
oneat

Reputation: 10994

Retrieving address of a function from ExE or Bin file

Which program can you recommend for me if I want to retrieve dissasembled code and absolute addresses of functions placed in exe file or binary file ??

Upvotes: 1

Views: 819

Answers (1)

t0mm13b
t0mm13b

Reputation: 34592

For Unix/Linux: use 'nm' or 'objdump'. For Windows use 'dumpbin'

Edit: As oneat pointed out he did not have Visual C++, it might be better to download OpenWatcom C++, which has the equivalent functionality called 'wdump.exe' bundled with it. Here is another site that contains the tools and what they do on wikibooks.

Hope this helps, Best regards, Tom.

Upvotes: 1

Related Questions