A powerful and versatile DLL injector written in rust, designed for injecting dynamic link libraries (DLLs) into running Windows processes. This tool supports multiple injection methods and process targeting by name, making it suitable for advanced users and developers exploring process manipulation.
Download DLL Injector: Download
CreateRemoteThread
to load the DLL via LoadLibraryA
.Notepad.exe
) instead of PID, with automatic PID resolution.Cargo.toml
:
[dependencies]
winapi = { version = "0.3", features = ["errhandlingapi", "handleapi", "libloaderapi", "memoryapi", "processthreadsapi", "synchapi", "winnt", "winbase", "tlhelp32", "minwindef"] }
injector.exe <PID> [DLL Path 1] [DLL Path 2] ... [--method CRT|APC]
Example:
Inject one DLL:
dll_inject.exe 1234 path\to\dll1.dll
Inject multiple DLLs:
dll_inject.exe 1234 dll1.dll dll2.dll
Use APC method:
dll_inject.exe 1234 dll1.dll --method APC
By: