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
|
#pragma once #include "stdafx.h"
class CInjectDLL { public: CInjectDLL(void); BOOL Inject(const DWORD dwRemoteProcessID, const LPCTSTR& lpwszRemoteDllFullPath); BOOL Inject(const LPCWSTR wszProcessName, const LPCTSTR& lpwszRemoteDllFullPath); BOOL Uninject(const DWORD dwRemoteProcessID, const LPCTSTR& lpwszRemoteDllFullPath); BOOL Uninject(const LPCWSTR wszProcessName, const LPCTSTR& lpwszRemoteDllFullPath); ~CInjectDLL(void); private: BOOL AdjustProcessTokenPrivilege(); BOOL GetProcessID(const wchar_t* wszProcessName, DWORD& dwProcID); };
#pragma once #include "StdAfx.h" #include "InjectDLL.h" #include <Windows.h> #include <string> #include "tlhelp32.h"
CInjectDLL::CInjectDLL(void) { }
CInjectDLL::~CInjectDLL(void) { }
BOOL CInjectDLL::Inject(const DWORD dwRemoteProcessID, const LPCTSTR& lpwszRemoteDllFullPath) { std::wstring wstrRemoteDllFullPath = lpwszRemoteDllFullPath; BOOL bRet;
if (!AdjustProcessTokenPrivilege()) { OutputDebugString(_T("AdjustProcessTokenPrivilege failn")); }
HANDLE hRemoteProgress = ::OpenProcess(PROCESS\_ALL\_ACCESS, FALSE, dwRemoteProcessID); if (hRemoteProgress == NULL) { OutputDebugString(_T("OpenProcess failn")); return FALSE; }
DWORD dwMemSize = sizeof(wchar_t)*wstrRemoteDllFullPath.length()+1; wchar\_t* wszDllPath = reinterpret\_cast<wchar\_t*>(::VirtualAllocEx(hRemoteProgress, NULL, dwMemSize, MEM\_COMMIT, PAGE_READWRITE)); if (wszDllPath == NULL) { OutputDebugString(_T("VirtualAllocEx failn")); ::CloseHandle(hRemoteProgress); return FALSE; }
bRet = ::WriteProcessMemory(hRemoteProgress, wszDllPath, wstrRemoteDllFullPath.c_str(), dwMemSize, NULL); if (!bRet) { OutputDebugString(_T("WriteProcessMemory failn")); ::CloseHandle(hRemoteProgress); return FALSE; }
FARPROC pfnFunAddr = ::GetProcAddress(::GetModuleHandle(_T("Kernel32")),"LoadLibraryW"); if (pfnFunAddr == NULL) { OutputDebugString(_T("GetProcAddress failn")); ::CloseHandle(hRemoteProgress); return FALSE; }
HANDLE hCreateThread; hCreateThread = ::CreateRemoteThread(hRemoteProgress, NULL, 0, (LPTHREAD\_START\_ROUTINE) pfnFunAddr, wszDllPath, 0, NULL); if (hCreateThread == NULL) { OutputDebugString(_T("CreateRemoteThread failn")); ::CloseHandle(hRemoteProgress);
::CloseHandle(hCreateThread); return FALSE; }
::VirtualFreeEx(hRemoteProgress, reinterpret\_cast<LPVOID>(wszDllPath), dwMemSize, MEM\_COMMIT); ::CloseHandle(hCreateThread); ::CloseHandle(hRemoteProgress); return TRUE; }
BOOL CInjectDLL::Inject(const wchar_t* wszProcessName, const LPCTSTR& lpwszRemoteDllFullPath) { DWORD dwProcID; GetProcessID(wszProcessName,dwProcID); if (Inject(dwProcID, lpwszRemoteDllFullPath)) return TRUE; else return FALSE; }
BOOL CInjectDLL::Uninject(const DWORD dwRemoteProcessID, const LPCTSTR& lpwszRemoteDllFullPath) { std::wstring wstrRemoteDllFullPath = lpwszRemoteDllFullPath;
HANDLE hSnap = ::CreateToolhelp32Snapshot(TH32CS_SNAPMODULE, dwRemoteProcessID); MODULEENTRY32 Me32 = {0}; Me32.dwSize = sizeof(MODULEENTRY32);
BOOL bRet = ::Module32First(hSnap, &Me32); while (bRet) { if (wcscmp(Me32.szExePath, wstrRemoteDllFullPath.c_str()) == 0) { break; } bRet = ::Module32Next(hSnap, &Me32); } ::CloseHandle(hSnap);
HANDLE hRemoteProgress = ::OpenProcess(PROCESS\_ALL\_ACCESS, FALSE, dwRemoteProcessID); if (hRemoteProgress == NULL) { OutputDebugString(_T("OpenProcess failn")); return FALSE; }
FARPROC pfnFunAddr = ::GetProcAddress(::GetModuleHandle(_T("Kernel32")),"FreeLibrary"); if (pfnFunAddr == NULL) { OutputDebugString(_T("GetProcAddress failn")); ::CloseHandle(hRemoteProgress); return FALSE; }
HANDLE hCreateThread; hCreateThread = ::CreateRemoteThread(hRemoteProgress, NULL, 0, (LPTHREAD\_START\_ROUTINE)pfnFunAddr, Me32.hModule, 0, NULL); if (hCreateThread == NULL) { OutputDebugString(_T("CreateRemoteThread failn")); ::CloseHandle(hRemoteProgress); ::CloseHandle(hCreateThread); return FALSE; }
::CloseHandle(hCreateThread); ::CloseHandle(hRemoteProgress); return TRUE; }
BOOL CInjectDLL::Uninject(const wchar_t* wszProcessName, const LPCTSTR& lpwszRemoteDllFullPath) { DWORD dwProcID; GetProcessID(wszProcessName,dwProcID); if (Uninject(dwProcID, lpwszRemoteDllFullPath)) return TRUE; else return FALSE; }
BOOL CInjectDLL::AdjustProcessTokenPrivilege() { LUID luidTmp; HANDLE hToken; TOKEN_PRIVILEGES tkp;
if(!OpenProcessToken(GetCurrentProcess(), TOKEN\_ADJUST\_PRIVILEGES | TOKEN_QUERY, &hToken)) { OutputDebugString(_T("AdjustProcessTokenPrivilege OpenProcessToken Failed ! n"));
return FALSE; }
if(!LookupPrivilegeValue(NULL, SE\_DEBUG\_NAME, &luidTmp)) { OutputDebugString(_T("AdjustProcessTokenPrivilege LookupPrivilegeValue Failed ! n"));
CloseHandle(hToken);
return FALSE; }
tkp.PrivilegeCount = 1; tkp.Privileges\[0\].Luid = luidTmp; tkp.Privileges\[0\].Attributes = SE\_PRIVILEGE\_ENABLED;
if(!AdjustTokenPrivileges(hToken, FALSE, &tkp, sizeof(tkp), NULL, NULL)) { OutputDebugString(_T("AdjustProcessTokenPrivilege AdjustTokenPrivileges Failed ! n"));
CloseHandle(hToken);
return FALSE; } return TRUE; }
BOOL CInjectDLL::GetProcessID(const wchar_t* wszProcessName, DWORD& dwProcID) { HANDLE hSnapShot = ::CreateToolhelp32Snapshot( TH32CS_SNAPPROCESS, dwProcID ); PROCESSENTRY32 pe = {sizeof(pe)}; BOOL bOk = ::Process32First( hSnapShot, &pe ); while( bOk ) { if (wcsstr(pe.szExeFile, wszProcessName)!=NULL) { dwProcID = pe.th32ProcessID; return TRUE; }
bOk = ::Process32Next( hSnapShot, &pe ); }
::CloseHandle(hSnapShot);
return FALSE; }
|