本文主要是介绍反调试 - r3 使用 NtQuerySystemInformation 获取 KdKdDebuggerEnable 和 KdDebuggerNotPresent,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
原理
NtQuerySystemInformation 被 ntdll.dll 导出,当第一个参数传入 0x23 (SystemInterruptInformation) 时,会返回一个 SYSTEM_KERNEL_DEBUGGER_INFORMATION 结构,里面的成员KdKdDebuggerEnable 和 KdDebuggerNotPresent 标志系统是否启用内核调试。
代码示例
// Test_Console_1.cpp : 此文件包含 "main" 函数。程序执行将在此处开始并结束。
//#include <iostream>
#include <Windows.h>
#include <intrin.h>using namespace std;typedef struct _SYSTEM_KERNEL_DEBUGGER_INFORMATION{BOOLEAN KernelDebuggerEnabled;BOOLEAN KernelDebuggerNotPresent;
} SYSTEM_KERNEL_DEBUGGER_INFORMATION, * PSYSTEM_KERNEL_DEBUGGER_INFORMATION;
typedef NTSTATUS(WINAPI* pNtQuerySystemInformation)(IN UINT SystemInformationClass,OUT PVOID SystemInformation,IN ULONG SystemInformationLength,OUT PULONG ReturnLength);int main()
{// 取 NtQuerySystemInformation 地址pNtQuerySystemInformation NtQuerySystemInformation = (pNtQuerySystemInformation)GetProcAddress(LoadLibrary(L"ntdll.dll"), "ZwQuerySystemInformation");if (NtQuerySystemInformation == NULL) {goto main_end;}// 获取系统信息SYSTEM_KERNEL_DEBUGGER_INFORMATION KdDebuggerInfo; if (NtQuerySystemInformation(0x23, // 要检索的系统信息的类型: SystemInterruptInformation&KdDebuggerInfo, // 接受请求信息sizeof(SYSTEM_KERNEL_DEBUGGER_INFORMATION), // 请求信息的字节大小NULL) != 0) {goto main_end;}// 判断调试器if (KdDebuggerInfo.KernelDebuggerEnabled || !KdDebuggerInfo.KernelDebuggerNotPresent) {cout << "发现调试器!" << endl;}else {cout << "没有调试器" << endl;}main_end:getchar();return 0;
}
这篇关于反调试 - r3 使用 NtQuerySystemInformation 获取 KdKdDebuggerEnable 和 KdDebuggerNotPresent的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!