我们如何将某个位置的 RVA(相对虚拟地址)映射到 PE 文件偏移量?
从磁盘位置读取 PE 文件时,我需要将 RVA(从 pdb 文件获取的相对虚拟地址)映射到 PE 文件(EXE)偏移量。为此,我需要将 RVA 转换为文件偏移量,以便我可以从该位置读出 GUIDS(CLSID、IID)。
问候 乌斯曼
I need to map RVA (Relative virtual address that's taken from pdb file) to PE file(EXE) offset when reading PE file from a disk location. For this I need to convert RVA to file offset so that I can read out GUIDS(CLSID,IID's) from that location.
Regards
Usman
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
您可以使用 ImageRvaToVa 函数。
You can use ImageRvaToVa function.
应该做的伎俩...
should do the trick...
下面的代码片段将入口点地址的 RVA 转换为实际磁盘偏移量。发送任何 RVA 以将其转换为磁盘偏移量,而不是 AEP 的地址。
Below code snippet converts RVA of address of entry point to actual disk offset. Instead of address of AEP send any RVA to convert it into disk offset.