This is a simple DLL injector designed to inject a specified DLL module into a given process as a thread Written in C (standard c99), please see the usage below.
This is specifically for Windows use.
Inject a DLL module into a specific process ID (PID).
# <PID> <DLL Module>
dllinject.exe 23212 mymodule.dll
Automatically get the PID and inject for a specific exe currently running.
# <flag> <PID> <DLL Module>
dllinject.exe auto foo.exe mymodule.dll
Requires GNU make. Just simply type make
in a shell instance in the source directory, this will produce
a binary in the ./build directory.
- Configuration through an INI file.
Automatic function for getting a process ID by name.