能力值:
( LV2,RANK:10 )
|
-
-
2 楼
写两个模块,一个sys一个exe,exe是个有界面的程序。在exe里用DeviceIoControl与sys通讯。DeviceIoControl可以查MSDN。
|
能力值:
(RANK:1060 )
|
-
-
3 楼
void *get_sdt_shadow()
{
void **addr, *x;
addr = (void **)KeAddSystemServiceTable;
for (i = 0; i < 100; i++)
{
x = *addr;
addr = (void **)((unsigned long)addr+1);
if ( MmIsAddressValid(x) &&
x != KeServiceDescriptorTable &&
RtlCompareMemory(x, KeServiceDescriptorTable, 0x10) == 0x10 )
{
return x;
}
}
return 0;
}
|
|
|