can someone give me a good injector for noforce? i can't find one
void inject(const char* dllpath, HANDLE hProcess)
{
void* remotedllpath;
remotedllpath = VirtualAllocEx(hProcess, NULL, strlen(dllpath), MEM_COMMIT, PAGE_READWRITE);
WriteProcessMemory(hProcess, remotedllpath, (void*)dllpath, strlen(dllpath), NULL);
CreateRemoteThread(hProcess, NULL, 0, (LPTHREAD_START_ROUTINE)LoadLibraryA, remotedllpath, 0, NULL);
}