Simple dll injector designed to load dll from disk. Supports PE header and entry point erasure. Written in C99.
- load dll from dll file on disk
- erase DLLEntryPoint
- erase PE header
C99 compiler for Windows is required in order to compile MemJect. Microsoft Visual Studio is required to load solution for easy compilation (MemJect.sln).
The very first step in order to compile MemJect is to clone this repo from GitHub to your local computer. Git is required to step futher, if not installed download it here. Open git bash / git cmd / cmd and enter following command:
git clone https://github.com/fredwangwang/MemJect.git
MemJect
folder should have been succesfully created, containing all the source files.
When you have equiped a copy of source code, next step is opening MemJect.sln in Microsoft Visual Studio. If you don't have Visual Studio, compile MemJect.cpp using your compilator.
Find below line in MemJect.cpp and replace csgo.exe with your destination process name:
#define PROCESS_NAME "csgo.exe"
Then change build configuration to Release | x86
and simply press Build solution.
If everything went right you should receive MemJect.exe
binary file.