依赖遍历器如何知道使用了模块中的哪些函数?

发布于 2024-11-07 01:43:11 字数 44 浏览 0 评论 0原文

它可以列出导出函数中使用的函数。

它是如何做到这一点的呢?

It can list the functions that's used among the exported functions.

How does it do the trick?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

柒夜笙歌凉 2024-11-14 01:43:11

关键是每个 Windows 模块(可执行文件和库)都包含一个导入表,其中列出了它所依赖的所有其他模块。该表由链接器构建,操作系统内部使用它来确定模块的依赖关系并加载适当的库。

因此,Dependency Walker 所要做的就是递归遍历所有这些模块(象征性地“遍历”它们),构建在各自导入表中指定的模块的列表。

显示所有运行时依赖项(例如使用GetProcAddress函数加载的依赖项),因为这些依赖项未在导入表中列出。它仅显示加载时(或静态)依赖关系。

您可以在此处此处

The key is that every Windows module (both executables and libraries) contains an import table that lists all of the other modules that it depends on. This table is built by the linker and is used by the operating system internally to determine the dependencies of the module and load the appropriate libraries.

So all that Dependency Walker has to do is recurse through all of those modules (figuratively, "walking" through them), building a list of the modules specified in their respective import tables.

It does not display all of the run-time dependencies (such as those loaded with the GetProcAddress function), as those are not listed in the import table. It only shows the load-time (or static) dependencies.

You can find more information about how Dependency Walker works here and here.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文