如何调用NTDLL中的未公开函数
HANDLEhNtDll=GetModuleHandle("ntdll.dll");GetProcAddress(hNtDll,"ZwQuerySystemInforma...
HANDLE hNtDll = GetModuleHandle("ntdll.dll");
GetProcAddress(hNtDll, "ZwQuerySystemInformation");我想使用ZwQuerySystemInformation这个函数,还需要怎么做? 展开
GetProcAddress(hNtDll, "ZwQuerySystemInformation");我想使用ZwQuerySystemInformation这个函数,还需要怎么做? 展开
2个回答
2013-08-06
展开全部
你要得弄清楚这个函数的原型,比如参数 以及返回值等等;然后就用下面代码;HINSTANCE hInst = LoadLibrary("ntdll.dll");
if(hInst)
{
typedef 返回值 (调用约定 *MYFUNC)(参数一,参数二,。。。);
MYFUNC fun = NULL;//定义一个相应的函数指针;
fun=(MYFUNC)GetProcAddress(hInst, "ZwQuerySystemInformation");
if(fun)
{//这里就可以进行调用了;fun(..., ...., ....);
}
FreeLibrary(hInst);
}
if(hInst)
{
typedef 返回值 (调用约定 *MYFUNC)(参数一,参数二,。。。);
MYFUNC fun = NULL;//定义一个相应的函数指针;
fun=(MYFUNC)GetProcAddress(hInst, "ZwQuerySystemInformation");
if(fun)
{//这里就可以进行调用了;fun(..., ...., ....);
}
FreeLibrary(hInst);
}
2013-08-06
展开全部
完整代码应该是typedef void ( WINAPI* RUN )(ULONG ,PVOID,ULONG,PULONG );RUN MyZwQuerySystemInformation;HANDLE hNtDll = GetModuleHandle("ntdll.dll");
MyZwQuerySystemInformation = (RUN)GetProcAddress(hNtDll, "ZwQuerySystemInformation");MyZwQuerySystemInformation 函数你就可以自己直接调用了
MyZwQuerySystemInformation = (RUN)GetProcAddress(hNtDll, "ZwQuerySystemInformation");MyZwQuerySystemInformation 函数你就可以自己直接调用了
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询