| 180 | } |
| 181 | |
| 182 | HANDLE DllInjection::startRemoteThread(HANDLE hProcess, LPVOID lpStartAddress, LPVOID lpParameter) |
| 183 | { |
| 184 | HANDLE hThread = 0; |
| 185 | |
| 186 | hThread = customCreateRemoteThread(hProcess, lpStartAddress, lpParameter); |
| 187 | |
| 188 | if (hThread) |
| 189 | { |
| 190 | specialThreadSettings(hThread); |
| 191 | ResumeThread(hThread); |
| 192 | } |
| 193 | |
| 194 | return hThread; |
| 195 | } |
| 196 | |
| 197 | HANDLE DllInjection::customCreateRemoteThread(HANDLE hProcess, LPVOID lpStartAddress, LPVOID lpParameter) |
| 198 | { |
nothing calls this directly
no outgoing calls
no test coverage detected