如何调用DLL的非导出功能? [英] How to call non-exported functions of a DLL?

查看:136
本文介绍了如何调用DLL的非导出功能?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我需要调用(获取)一个 DLL 的非导出函数。与PE导出表不同,非导出没有任何具有这些条目的表。更重要的是,像IDAPro和其他调试器这样的所有反汇编程序只显示带有装饰名称的导出函数名称(在IDA之后为Shift + F3),并显示所有其他函数,如sub_000FF种类。

I need to call (get) non-exported functions of a DLL. Unlike PE export table, non-exports do not have any table having entries for these. More over, all disassembler like IDAPro and other debuggers only show exported function names with decorated names (After Shift+F3 in case of IDA) and show all other functions like sub_000FF sorts of.

任何想法如何以编程方式获取和调用$ code> DLL 的非导出函数? ( GetProcAddress 之后 LoadLibrary 仅调用不适用于非导出的装饰导出功能。)

Any idea how to get and call non-exported functions of DLL programmatically? (GetProcAddress after LoadLibrary only calls decorated exported functions not designed for non exports.)

推荐答案

我在使用DIA SDK后自己解决了问题。

I solved the problem myself after usage of of DIA SDK .

我收集了那里,然后通过装配旋转,我可以直接调用函数。
感谢大家的评论。

I collected the function address from there and then via assembly rotuines I am able to call the function directly. Thanks everybody for comments.

这篇关于如何调用DLL的非导出功能?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆