Browse Source

Introduced a bit more delay at startup, also terminate the app

after the injection is done.
pull/20/head
Valentin Radu 5 years ago
parent
commit
0ab00b83ea
  1. 18
      ExplorerPatcher/main.c

18
ExplorerPatcher/main.c

@ -13,12 +13,20 @@ processorArchitecture='*' publicKeyToken='6595b64144ccf1df' language='*'\"")
#define APP_NAME TEXT("Windows Explorer") #define APP_NAME TEXT("Windows Explorer")
#define NOP 0x90 #define NOP 0x90
#define PATCH_OFFSET 0x8cb33 #define PATCH_OFFSET 0x8cb33
#define DELAY 5000
HANDLE hProcess = NULL; HANDLE hProcess = NULL;
HMODULE hMod = NULL; HMODULE hMod = NULL;
LPVOID hInjection = NULL; LPVOID hInjection = NULL;
HWND hWnd = NULL; HWND hWnd = NULL;
DWORD KillAfter(INT64 timeout)
{
Sleep(timeout);
TerminateProcess(GetCurrentProcess(), 0);
return 0;
}
LRESULT CALLBACK WindowProc( LRESULT CALLBACK WindowProc(
HWND hWnd, HWND hWnd,
UINT uMsg, UINT uMsg,
@ -302,7 +310,15 @@ int WINAPI wWinMain(
szLibPath, szLibPath,
L"\\ExplorerPatcherLibrary.dll" L"\\ExplorerPatcherLibrary.dll"
); );
Sleep(2000); Sleep(DELAY);
CreateThread(
0,
0,
KillAfter,
5000,
0,
0
);
return VnInjectAndMonitorProcess( return VnInjectAndMonitorProcess(
szLibPath, szLibPath,
MAX_PATH, MAX_PATH,

Loading…
Cancel
Save