从 ExE 或 Bin 文件中检索函数的地址
如果我想检索 exe 文件或二进制文件中的反汇编代码和函数的绝对地址,您可以为我推荐哪个程序?
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 ??
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
对于 Unix/Linux:使用 'nm' 或 'objdump'。
对于 Windows,请使用 'dumpbin'
编辑: As < em>oneat 指出他没有 Visual C++,最好下载 OpenWatcom C++ ,它捆绑了名为“wdump.exe”的等效功能。 这里是另一个包含这些工具及其在 wikibook 上的功能的网站。
希望这有帮助,
此致,
汤姆.
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.