使用 OllyDbg 反汇编动态链接库
是否有一个选项可以选择如何启动DLL(例如在 Visual Studio 中调试 DLL 项目时)?
在我看来,当我将 DLL 放入 OD 时,我唯一的选择就是通过 LOADDLL.EXE
启动它,这就是整个故事吗?
Is there a option I can choose how to launch the DLL(like when debugging a dll project in visual studio)?
As it seems to me when I drop the DLL into OD,the only option I have is to launch it by LOADDLL.EXE
, is that the whole story?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
DLL 本身无法运行,它必须由某个进程加载。 OllyDbg 提供 Loaddll.exe 就是为了这个目的,或者您可以调试任何应该加载它的应用程序并在新模块上启用中断。
You can't run a DLL by itself, it has to be loaded by some process. OllyDbg provides Loaddll.exe just for that purpose, or you can just debug whatever application is supposed to load it and enable break on new module.