https://github.com/adamhlt/dll-injector
DLL Injector (LoadLibrary) in C++ (x86 / x64) - LoadLibrary DLL injector
https://github.com/adamhlt/dll-injector
dll-injection dll-injector loadlibrary pe winapi windows windows-internals
Last synced: 5 months ago
JSON representation
DLL Injector (LoadLibrary) in C++ (x86 / x64) - LoadLibrary DLL injector
- Host: GitHub
- URL: https://github.com/adamhlt/dll-injector
- Owner: adamhlt
- License: gpl-3.0
- Created: 2021-06-09T15:03:12.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2023-08-01T20:22:12.000Z (over 1 year ago)
- Last Synced: 2024-12-08T22:01:27.132Z (5 months ago)
- Topics: dll-injection, dll-injector, loadlibrary, pe, winapi, windows, windows-internals
- Language: C++
- Homepage:
- Size: 7.64 MB
- Stars: 110
- Watchers: 2
- Forks: 20
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
```
____ __ __ ____ _ __
/ __ \/ / / / / _/___ (_)__ _____/ /_____ _____
/ / / / / / / / // __ \ / / _ \/ ___/ __/ __ \/ ___/
/ /_/ / /___/ /___ _/ // / / / / / __/ /__/ /_/ /_/ / /
/_____/_____/_____/ /___/_/ /_/_/ /\___/\___/\__/\____/_/
/___/DLL Injector (LoadLibrary) in C++ (x86 / x64)
LoadLibrary DLL Injector
```
![]()
![]()
![]()
![]()
## :open_book: Project Overview :
This is a DLL injector written in C++, it uses the most basic method to inject DLL (LoadLibrary).
The "Release" section contains the DLL injector (x86 / x64) and tiny test programs (x86 / x64).
## ๐ Getting Started :
### Visual Studio :
1. Open the solution file (.sln).
2. Build the project in Realese (x86) or Release (x64).Every configuration in x86 / x64 (Debug and Realese) are already configured.
> **Warning**
> It is necessary to build it in x86 or x64, it depends of the target process's architecture.### Other IDE using CMAKE :
This **CMakeLists.txt** should compile the project.
```cmake
cmake_minimum_required(VERSION 3.0)
project(Basic_DLL_Injector)set(CMAKE_CXX_STANDARD 17)
add_executable(inject DLL_Injector.cpp)
```Tested on CLion with MSVC compiler, you can get Visual Studio Build Tools [**here**](https://visualstudio.microsoft.com/fr/downloads/?q=build+tools).
## ๐งช Usage :
### How to use the program :
Use it in the command line :
inject.exe
**You can get the DLL injector (x86 / x64) and the test files (x86 / x64) in the "Release" section.**### Demonstration :
### TEST FILES (x86)
https://user-images.githubusercontent.com/48086737/170119196-8610ee0b-984e-4a42-a931-007dccd3d8c0.mp4