如何跟踪正在加载到进程中的dll?
我正在寻找一个工具来跟踪加载到 Windows 进程中的 dll。我的应用程序正在加载托管和非托管 dll,但不确定托管的 dll 是否正在加载非托管的 dll。进程资源管理器和文件资源管理器似乎没有多大帮助。有什么想法吗?谢谢!!
I am looking for a tool to trace the dlls being loaded into a process on windows. The app i have is loading managed and unmanaged dlls, but not sure if the managed ones are loading the unmaanged ones. Process Explorer and File Explorer doesn't seem to help much. Any thoughts?? thanks!!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
从版本 2.0 开始,Dependency Walker 可以执行 动态应用程序分析。这使您可以查看正在运行的应用程序正在加载哪些模块,而不是仅仅查看静态导入表中的内容。
As of version 2.0, Dependency Walker can do dynamic application profiling. This allows you to see what modules a running application is loading, as opposed to just seeing what is in the static import tables.
Procmon 是我所知道的最好的工具,尽管它的详细程度可能是压倒性的。
Procmon is the best tool I know of, though its level of detail can be overwhelming.