MCPcopy Create free account
hub / github.com/NtQuery/Scylla / startRemoteThread

Method startRemoteThread

Scylla/DllInjection.cpp:182–195  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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 {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected