GetModuleFileNameA 返回奇怪的结果
我正在尝试使用 GetModuleFileNameA
获取在另一个进程中加载的模块的名称。
我已经使用 dbgHelp 加载了一个符号并获取了其模块基地址,但发生了 2 件奇怪的事情:
1. 有时GetModuleFileNameA
返回系统错误代码5:访问被拒绝。
2. 返回错误的模块名称。对于我知道模块 A 中的函数,我得到模块 B 的名称...:/
有人可以帮助我吗?
谢谢:)
I'm trying to get the name of a module loaded in another process with GetModuleFileNameA
.
I've loaded a symbol using dbgHelp and got its module base address but 2 weird thing happen:
1. Sometimes GetModuleFileNameA
returns system error codes 5: Access denied.
2. It returns the wrong module name. for a function I know to be in module A, I get the name of module B... :/
Can somebody help me?
thanks:)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
请阅读文档。在 GetModuleFileName 的页面上,显示
GetModuleFileName 仅对进程中的模块有意义。即使两个进程都加载了该模块,它也可能位于不同的基地址。您实际上正在向 GetModuleFileName 提供垃圾。只是重申一下,您需要使用 GetModuleFileNameEx
Please read the docs. Right on the page for GetModuleFileName it says
GetModuleFileName only makes sense for modules in your process. Even if both processes have loaded the module, it may be at a different base address. You're effectively feeding GetModuleFileName garbage. Just to reiterate, you need to use GetModuleFileNameEx
如果您的进程想要访问另一个进程,它需要拥有这样做的权限。这意味着您的进程需要提升权限,或者它必须是其他进程的所有者。
如果您得到错误的名称,则可能使用了错误的句柄。这也可以解释为什么您有时会被拒绝访问。如果将句柄传递给错误的模块,即使您确实有权访问您想知道其名称的模块,您也可能无法访问该模块。
If your process wants to access another process, it needs to have the rights to do so. That means your process needs elevated rights, or it must be the owner of the other process.
If you get the wrong name, you may have used the wrong handle. That might also explain why you get Access Denied sometimes. If you pass the handle to the wrong module, you may not have access to that, even if you do have access to the module you want to know the name of.