Simple window debugger(미완성)
#include #include #include #include #include #pragma comment(lib, "psapi.lib")#define BUFSIZE 512 int main(){ STARTUPINFO si = { 0 }; PROCESS_INFORMATION pi = { 0 }; wchar_t *target = L"C:\\windows\\system32\\notepad.exe"; //타겟프로세스 세팅 if (TRUE != CreateProcessW( target, NULL, NULL, NULL, FALSE, CREATE_NEW_CONSOLE | DEBUG_PROCESS, // DEBUG_PROCESS 로 설정하면 자식프로세스까지 추적할 수 있다. NULL, NULL, &si, &pi)) ..
2015. 11. 20.