Hello im loading my ntoskrnl image in user space using:
How can i locate HalDispatchTable+8 and get the value ?
thanks
Code: Select all
i can find HalDispatchTable which export by kernel easily but, hNtOsHandle = LoadLibrary( KernelImageName );
if ( hNtOsHandle == NULL )
{
printf("LoadLibrary()", &err);
return FALSE;
}
How can i locate HalDispatchTable+8 and get the value ?
thanks