Process, Thread Enumeration은 Injection 같은 기법을 수행할 때 필수적입니다.Process EnumerationBOOL GetRemoteProcessHandle(IN LPWSTR szProcessName, OUT DWORD* dwProcessId, OUT HANDLE* hProcess) { HANDLE hSnapShot = NULL; PROCESSENTRY32 Proc = { .dwSize = sizeof(PROCESSENTRY32) }; hSnapShot = CreateToolhelp32Snapshot(TH32CS_SNAPPROCESS, NULL); if (hSnapShot == INVALID_HANDLE_VALUE) { printf("\t[!] CreateToolhel..