https://github.com/iswenzz/izinjector
This application is intended to allow users to inject a Dynamic-Link Library (DLL) file into another process in memory.
https://github.com/iswenzz/izinjector
c injector
Last synced: 9 months ago
JSON representation
This application is intended to allow users to inject a Dynamic-Link Library (DLL) file into another process in memory.
- Host: GitHub
- URL: https://github.com/iswenzz/izinjector
- Owner: Iswenzz
- License: gpl-3.0
- Created: 2019-11-13T15:16:22.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2025-10-01T09:33:06.000Z (9 months ago)
- Last Synced: 2025-10-01T10:28:39.777Z (9 months ago)
- Topics: c, injector
- Language: C
- Homepage: https://iswenzz.com
- Size: 137 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Funding: .github/FUNDING.yml
- License: LICENSE
Awesome Lists containing this project
README
# IzInjector
[](https://github.com/Iswenzz/IzInjector/actions)
[](https://www.codefactor.io/repository/github/iswenzz/izinjector)
[](https://github.com/Iswenzz/IzInjector/blob/master/LICENSE)
This application is intended to allow users to inject a Dynamic-Link Library (DLL) file into another process in memory. Note that this is meant to be used for educational purposes only, and I do not condone its use for cheating of any kind.
## Command Line Interface
```
Usage: IzInjector --mode INJECT --name notepad.exe [DLLs Paths]
--help Display the program help message
--version Display the program version
-m, --mode= DLL Injection mode [INJECT or EJECT]
-n, --name= The target process name [notepad.exe]
-p, --pid= The target process ID
DLL Files
```
## Building
This project builds with [CMake](https://cmake.org/) and [vcpkg](https://vcpkg.io/).
### x64
```sh
mkdir build64 && cd build64
cmake .. --preset x64-windows
cmake --build .
```
### x86
```sh
mkdir build32 && cd build32
cmake .. --preset x86-windows
cmake --build .
```
### [Download](https://github.com/Iswenzz/IzInjector/releases)
## Package
This package is available for use via [vcpkg-registry](https://github.com/Iswenzz/vcpkg-registry).
## Contributors:
**_Note:_** If you would like to contribute to this repository, feel free to send a pull request, and I will review your code.
Also feel free to post about any problems that may arise in the issues section of the repository.