Skip to content

Msfv3n0m/Global-SetWindowsHookEx-Injector

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Global-SetWindowsHookEx-Injector

Injects as many processes as possible with d3d11 hook example

Usage

  • hookloader.exe = injector
  • test.dll = dll
  1. Just add this to your dll: extern "C" __declspec(dllexport) int NextHook(int code, WPARAM wParam, LPARAM lParam) { return CallNextHookEx(NULL, code, wParam, lParam); }

  2. Edit your dll name in hookloader/main.cpp: HMODULE dll = LoadLibraryEx(L"test.dll", NULL, DONT_RESOLVE_DLL_REFERENCES); //<-- DLL name

  3. Compile & done

About

Global SetWindowsHookEx Injector

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • C 88.5%
  • C++ 11.5%