为什么 dependency walker 将 32 位 dll 显示为 64 位?
在一些分析过程中,我在 Windows 7 64 位计算机上遇到了这种情况:我使用依赖加载了 notepad.exe,它显示位于 System32 上的依赖项是 64 位!是依赖项中有问题还是有其他问题,例如依赖项重定向?关于如何解释依赖步行者的输出有什么想法吗?
During some analysis I had this situation on a Windows 7 64-bit machine: I loaded notepad.exe with depends and it shows me dependencies located on System32 as being 64 bit! Is is something buggy in depends or something else like redirection of dependencies? Any idea on how to interpret the output of depencency walker?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Windows 7下
system32
文件夹中的应用程序和库实际上是64位二进制文件。 32 位内容的支持系统位于 syswow64 中。这就像单击“开始”来关闭计算机:)WoW64(Windows 32 位 Windows 64 位)< /a>
Applications and libraries in the
system32
folder under Windows 7 are actually 64bit binaries. The support system for 32 bit stuff is insyswow64
. It's like clicking "start" to shutdown your computer :)WoW64 (Windows 32-bit On Windows 64-bit)
没有错误。 Windows 7 上的记事本是 64 位应用程序,因此从 system32 目录加载 64 位 DLL。
64 位 Windows 操作系统上的命名约定并不完全直观,但我想这对某些人来说是有意义的。
System32 包含 64 位二进制文件,SysWOW64 包含 32 位二进制文件。
There is no bug. Notepad on Windows 7 is a 64-bit application, and is thus loading 64-bit DLLs from the system32 directory.
The naming conventions on 64-bit Windows operating systems is not exactly intuitive, but I guess it makes sense to somebody.
System32 contains the 64-bit binaries, and SysWOW64 contains the 32-bit binaries.