EasyHook远程代码注入
文章转自王牌软件
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
只回答业务咨询
站长推荐:NSetup一键部署软件
一键式完成美化安装包制作,自动增量升级,数据统计,数字签名。应对各种复杂场景,脚本模块化拆分,常规复杂的脚本代码,图形化设置。无需专业的研发经验,轻松完成项目部署。(www.nsetup.cn)
最近一段时间由于使用MinHook的API挂钩不稳定,经常因为挂钩地址错误而导致宿主进程崩溃。听同事介绍了一款智能强大的挂钩引擎EasyHook。它比微软的detours好的一点是它的x64注入支持是免费开源的。不想微软的detours,想搞x64还得购买。
好了,闲话不多说,先下载EasyHook的开发库,当然有兴趣的同学可以下载源码进行学习。下载地址:http://easyhook.codeplex.com/releases/view/24401。我给的这个是2.6版本的。
EasyHook提供了两种模式的注入管理。一种是托管代码的注入,另一种是非托管代码的注入。我是学习C++的,所以直接学习了例子中的非托管项目UnmanagedHook。里面给了一个简单的挂钩MessageBeep API的示例。我需要将其改造成支持远程注入的。下面先给出钩子DLL代码:
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 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 |
// dllmain.cpp : 定义 DLL 应用程序的入口点。 #include "stdafx.h" #include "HookApi.h" #include "easyhook.h" #include "ntstatus.h" ptrCreateFileW realCreateFileW = NULL; ptrCreateFileA realCreateFileA = NULL; HMODULE hKernel32 = NULL; TRACED_HOOK_HANDLE hHookCreateFileW = new HOOK_TRACE_INFO(); TRACED_HOOK_HANDLE hHookCreateFileA = new HOOK_TRACE_INFO(); NTSTATUS statue; ULONG HookCreateFileW_ACLEntries[1] = {0}; ULONG HookCreateFileA_ACLEntries[1] = {0}; int PrepareRealApiEntry() { OutputDebugString(L"PrepareRealApiEntry()\n"); // 获取真实函数地址 HMODULE hKernel32 = LoadLibrary(L"Kernel32.dll"); if (hKernel32 == NULL) { OutputDebugString(L"LoadLibrary(L\"Kernel32.dll\") Error\n"); return -6002; } OutputDebugString(L"LoadLibrary(L\"Kernel32.dll\") OK\n"); realCreateFileW = (ptrCreateFileW)GetProcAddress(hKernel32, "CreateFileW"); if (realCreateFileW == NULL) { OutputDebugString(L"(ptrCreateFileW)GetProcAddress(hKernel32, \"CreateFileW\") Error\n"); return -6007; } OutputDebugString(L"(ptrCreateFileW)GetProcAddress(hKernel32, \"CreateFileW\") OK\n"); realCreateFileA = (ptrCreateFileA)GetProcAddress(hKernel32, "CreateFileA"); if (realCreateFileA == NULL) { OutputDebugString(L"(ptrCreateFileA)GetProcAddress(hKernel32, \"CreateFileA\") Error\n"); return -6007; } OutputDebugString(L"(ptrCreateFileA)GetProcAddress(hKernel32, \"CreateFileA\") OK\n"); return 0; } void DoHook() { OutputDebugString(L"DoHook()\n"); statue = LhInstallHook(realCreateFileW, MyCreateFileW, /*(PVOID)0x12345678*/NULL, hHookCreateFileW); if(!SUCCEEDED(statue)) { switch (statue) { case STATUS_NO_MEMORY: OutputDebugString(L"STATUS_NO_MEMORY\n"); break; case STATUS_NOT_SUPPORTED: OutputDebugString(L"STATUS_NOT_SUPPORTED\n"); break; case STATUS_INSUFFICIENT_RESOURCES: OutputDebugString(L"STATUS_INSUFFICIENT_RESOURCES\n"); break; default: WCHAR dbgstr[512] = {0}; wsprintf(dbgstr, L"%d\n", statue); OutputDebugString(dbgstr); } OutputDebugString(L"LhInstallHook(GetProcAddress(hKernel32, \"CreateFileW\"),MyCreateFileW,(PVOID)0x12345678,hHookCreateFileW); Error\n"); return; } OutputDebugString(L"Hook CreateFileW OK\n"); statue = LhInstallHook(realCreateFileA, MyCreateFileA, /*(PVOID)0x12345678*/NULL, hHookCreateFileA); if(!SUCCEEDED(statue)) { switch (statue) { case STATUS_NO_MEMORY: OutputDebugString(L"STATUS_NO_MEMORY\n"); break; case STATUS_NOT_SUPPORTED: OutputDebugString(L"STATUS_NOT_SUPPORTED\n"); break; case STATUS_INSUFFICIENT_RESOURCES: OutputDebugString(L"STATUS_INSUFFICIENT_RESOURCES\n"); break; default: WCHAR dbgstr[512] = {0}; wsprintf(dbgstr, L"%d\n", statue); OutputDebugString(dbgstr); } OutputDebugString(L"LhInstallHook(GetProcAddress(hKernel32, \"CreateFileA\"),MyCreateFileA,(PVOID)0x12345678,hHookCreateFileA); Error\n"); return; } OutputDebugString(L"Hook CreateFileA OK\n"); // 一定要调用这个函数,否则注入的钩子无法正常运行。 LhSetExclusiveACL(HookCreateFileA_ACLEntries, 1, hHookCreateFileA); LhSetExclusiveACL(HookCreateFileW_ACLEntries, 1, hHookCreateFileW); } void DoneHook() { OutputDebugString(L"DoneHook()\n"); // this will also invalidate "hHook", because it is a traced handle... LhUninstallAllHooks(); // this will do nothing because the hook is already removed... LhUninstallHook(hHookCreateFileA); LhUninstallHook(hHookCreateFileW); // now we can safely release the traced handle delete hHookCreateFileA; hHookCreateFileA = NULL; delete hHookCreateFileW; hHookCreateFileW = NULL; // even if the hook is removed, we need to wait for memory release LhWaitForPendingRemovals(); } BOOL APIENTRY DllMain( HMODULE hModule, DWORD ul_reason_for_call, LPVOID lpReserved ) { switch (ul_reason_for_call) { case DLL_PROCESS_ATTACH: { OutputDebugString(L"DllMain::DLL_PROCESS_ATTACH\n"); // 准备好原始地址与目的地址 int errCode = PrepareRealApiEntry(); if (errCode != 0) { OutputDebugString(L"PrepareRealApiEntry() Error\n"); return FALSE; } // 开始挂钩 DoHook(); break; } case DLL_THREAD_ATTACH: { OutputDebugString(L"DllMain::DLL_THREAD_ATTACH\n"); break; } case DLL_THREAD_DETACH: { OutputDebugString(L"DllMain::DLL_THREAD_DETACH\n"); break; } case DLL_PROCESS_DETACH: { OutputDebugString(L"DllMain::DLL_PROCESS_DETACH\n"); // 卸载钩子 DoneHook(); break; } } return TRUE; } //--------------------------------------------------------------------- <pre class="cpp" name="code">// HookSvr.cpp #include "stdafx.h" #include "HookApi.h" #include "easyhook.h" HANDLE WINAPI MyCreateFileW( __in LPCWSTR lpFileName, __in DWORD dwDesiredAccess, __in DWORD dwShareMode, __in_opt LPSECURITY_ATTRIBUTES lpSecurityAttributes, __in DWORD dwCreationDisposition, __in DWORD dwFlagsAndAttributes, __in_opt HANDLE hTemplateFile ) { HANDLE hHandle = NULL; // 执行钩子 if (realCreateFileW == NULL) { OutputDebugString(L"realCreateFileW is NULL\n"); return INVALID_HANDLE_VALUE; } else { OutputDebugString(L"realCreateFileW is not NULL\n"); hHandle = (realCreateFileW)(lpFileName, dwDesiredAccess, dwShareMode, lpSecurityAttributes, dwCreationDisposition, dwFlagsAndAttributes, hTemplateFile); OutputDebugString(L"MyCreateFileW : "); OutputDebugString(lpFileName); OutputDebugString(L"\n"); } return hHandle; } HANDLE WINAPI MyCreateFileA( __in LPCSTR lpFileName, __in DWORD dwDesiredAccess, __in DWORD dwShareMode, __in_opt LPSECURITY_ATTRIBUTES lpSecurityAttributes, __in DWORD dwCreationDisposition, __in DWORD dwFlagsAndAttributes, __in_opt HANDLE hTemplateFile ) { HANDLE hHandle = NULL; // 执行钩子 if (realCreateFileA == NULL) { OutputDebugString(L"realCreateFileA is NULL\n"); return INVALID_HANDLE_VALUE; } else { OutputDebugString(L"realCreateFileA is not NULL\n"); hHandle = (realCreateFileA)(lpFileName, dwDesiredAccess, dwShareMode, lpSecurityAttributes, dwCreationDisposition, dwFlagsAndAttributes, hTemplateFile); OutputDebugString(L"MyCreateFileW : "); OutputDebugStringA(lpFileName); OutputDebugString(L"\n"); } return hHandle; }</pre><br> 钩子这一部分我弄了比较久,主要是API不熟悉,不过好在弄好了。 <pre></pre> <p><br> </p> <p><pre class="cpp" name="code">// HookSvr.h #pragma once #include <Windows.h> #ifndef _M_X64 #pragma comment(lib, "EasyHook32.lib") #else #pragma comment(lib, "EasyHook64.lib") #endif HANDLE WINAPI MyCreateFileW( __in LPCWSTR lpFileName, __in DWORD dwDesiredAccess, __in DWORD dwShareMode, __in_opt LPSECURITY_ATTRIBUTES lpSecurityAttributes, __in DWORD dwCreationDisposition, __in DWORD dwFlagsAndAttributes, __in_opt HANDLE hTemplateFile ); typedef HANDLE (WINAPI *ptrCreateFileW)( __in LPCWSTR lpFileName, __in DWORD dwDesiredAccess, __in DWORD dwShareMode, __in_opt LPSECURITY_ATTRIBUTES lpSecurityAttributes, __in DWORD dwCreationDisposition, __in DWORD dwFlagsAndAttributes, __in_opt HANDLE hTemplateFile ); extern ptrCreateFileW realCreateFileW; HANDLE WINAPI MyCreateFileA( __in LPCSTR lpFileName, __in DWORD dwDesiredAccess, __in DWORD dwShareMode, __in_opt LPSECURITY_ATTRIBUTES lpSecurityAttributes, __in DWORD dwCreationDisposition, __in DWORD dwFlagsAndAttributes, __in_opt HANDLE hTemplateFile ); typedef HANDLE (WINAPI *ptrCreateFileA)( __in LPCSTR lpFileName, __in DWORD dwDesiredAccess, __in DWORD dwShareMode, __in_opt LPSECURITY_ATTRIBUTES lpSecurityAttributes, __in DWORD dwCreationDisposition, __in DWORD dwFlagsAndAttributes, __in_opt HANDLE hTemplateFile ); extern ptrCreateFileA realCreateFileA;</pre><br> <br> <p></p> <p>接下来是注入工具,这里指提供核心代码。本来EasyHook还提供了一个叫<span style="color: black;">Rh</span>InjectLibrary()方法直接注入,这种方法相当稳定,推荐使用。我本来也用它,但是发现注入会失败,所以就采用了比较通用的远程注入代码,如下:</p> <pre class="cpp" name="code">BOOL RtlFileExists(WCHAR* InPath) { HANDLE hFile; if((hFile = CreateFileW(InPath, 0, FILE_SHARE_READ | FILE_SHARE_WRITE, NULL, OPEN_EXISTING, 0, NULL)) == INVALID_HANDLE_VALUE) return FALSE; CloseHandle(hFile); return TRUE; } BOOL SetPrivilege(LPCTSTR lpszPrivilege, BOOL bEnablePrivilege) { TOKEN_PRIVILEGES tp; HANDLE hToken; LUID luid; if( !OpenProcessToken(GetCurrentProcess(), TOKEN_ADJUST_PRIVILEGES | TOKEN_QUERY, &hToken) ) { return FALSE; } if( !LookupPrivilegeValue(NULL, // lookup privilege on local system lpszPrivilege, // privilege to lookup &luid) ) // receives LUID of privilege { return FALSE; } tp.PrivilegeCount = 1; tp.Privileges[0].Luid = luid; if( bEnablePrivilege ) tp.Privileges[0].Attributes = SE_PRIVILEGE_ENABLED; else tp.Privileges[0].Attributes = 0; // Enable the privilege or disable all privileges. if( !AdjustTokenPrivileges(hToken, FALSE, &tp, sizeof(TOKEN_PRIVILEGES), (PTOKEN_PRIVILEGES) NULL, (PDWORD) NULL) ) { return FALSE; } if( GetLastError() == ERROR_NOT_ALL_ASSIGNED ) { //The token does not have the specified privilege. return FALSE; } return TRUE; } typedef DWORD (WINAPI *PFNTCREATETHREADEX) ( PHANDLE ThreadHandle, ACCESS_MASK DesiredAccess, LPVOID ObjectAttributes, HANDLE ProcessHandle, LPTHREAD_START_ROUTINE lpStartAddress, LPVOID lpParameter, BOOL CreateSuspended, DWORD dwStackSize, DWORD dw1, DWORD dw2, LPVOID Unknown ); BOOL MyCreateRemoteThread(HANDLE hProcess, LPTHREAD_START_ROUTINE pThreadProc, LPVOID pRemoteBuf) { HANDLE hThread = NULL; FARPROC pFunc = NULL; BOOL bHook; // 判断系统版本 OSVERSIONINFO osvi; //BOOL bIsWindowsXPorLater; ZeroMemory(&osvi, sizeof(OSVERSIONINFO)); osvi.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&osvi); if (osvi.dwMajorVersion == 6) { bHook = TRUE; } else { bHook = FALSE; } if(bHook) // Vista, 7, Server2008 { pFunc = GetProcAddress(GetModuleHandle(L"ntdll.dll"), "NtCreateThreadEx"); if( pFunc == NULL ) { //GetLastError()); return FALSE; } OutputDebugString(L"MyCreateRemoteThread"); ((PFNTCREATETHREADEX)pFunc)(&hThread, 0x1FFFFF, NULL, hProcess, pThreadProc, pRemoteBuf, FALSE, NULL, NULL, NULL, NULL); if( hThread == NULL ) { return FALSE; } } else // 2000, XP, Server2003 { hThread = CreateRemoteThread(hProcess, NULL, 0, pThreadProc, pRemoteBuf, 0, NULL); if( hThread == NULL ) { return FALSE; } } if( WAIT_FAILED == WaitForSingleObject(hThread, INFINITE) ) { return FALSE; } return TRUE; } BOOL InjectDll(DWORD dwPID, const wchar_t *szDllName) { HANDLE hProcess = NULL; LPVOID pRemoteBuf = NULL; FARPROC pThreadProc = NULL; DWORD dwBufSize = wcslen(szDllName)*sizeof(wchar_t)+2; if ( !(hProcess = OpenProcess(PROCESS_ALL_ACCESS, FALSE, dwPID)) ) { return FALSE; } pRemoteBuf = VirtualAllocEx(hProcess, NULL, dwBufSize, MEM_COMMIT, PAGE_READWRITE); WriteProcessMemory(hProcess, pRemoteBuf, (LPVOID)szDllName, dwBufSize, NULL); pThreadProc = GetProcAddress(GetModuleHandle(L"kernel32.dll"), "LoadLibraryW"); if( !MyCreateRemoteThread(hProcess, (LPTHREAD_START_ROUTINE)pThreadProc, pRemoteBuf) ) { return FALSE; } VirtualFreeEx(hProcess, pRemoteBuf, dwBufSize, MEM_RELEASE); CloseHandle(hProcess); return TRUE; } int DoInject(DWORD aPid, const WCHAR *aFullpath) { if (wcslen(aFullpath) <= 0) { return -1; } //判断dll是否存在 HANDLE hFile = CreateFile(aFullpath, GENERIC_READ, FILE_SHARE_READ|FILE_SHARE_WRITE,NULL, OPEN_EXISTING,FILE_ATTRIBUTE_NORMAL,NULL); if(hFile != INVALID_HANDLE_VALUE) { DWORD dwsize = GetFileSize(hFile, NULL); CloseHandle(hFile); if (dwsize < 10) { return -2; } } else { return -3; } BOOL bSuc=SetPrivilege(SE_DEBUG_NAME, TRUE); bSuc=InjectDll((DWORD)aPid, aFullpath); if (bSuc) { return -4; } return 0; } // 真实注入的时候应该这样调用 DoInject(m_processId, L"E:\\src\\easyhook\\trunk\\Debug\\x86\\HookSvr.dll"); 这样就能保证注入的钩子能正常工作了。 |
学习日记,兼职软件设计,软件修改,毕业设计。
本文出自 学习日记,转载时请注明出处及相应链接。
本文永久链接: https://www.softwareace.cn/?p=348