如何从UserMode C ++获取ZwQuerySystemInformation的地址

时间:2013-03-18 15:24:35

标签: c++ function kernel

如何从用户模式获取内核中函数ZwQuerySystemInformation的地址?

谢谢!

1 个答案:

答案 0 :(得分:1)

使用NtQuerySystemInformation代替。您必须使用LoadLibrary()来获取ntdll.dll和GetProcAddress()的句柄以获取地址。请注意,ZwQuerySystemInformation已从Windows 8中删除,对NtQuerySystemInformation的影响尚不清楚。显然,你需要彻底测试它。