https://github.com/keirany/loadlibrary
A simple dll injector for windows based on WINAPI's LoadLibrary function.
https://github.com/keirany/loadlibrary
c-plus-plus memory-hacking windows
Last synced: 6 months ago
JSON representation
A simple dll injector for windows based on WINAPI's LoadLibrary function.
- Host: GitHub
- URL: https://github.com/keirany/loadlibrary
- Owner: KeiranY
- Created: 2017-08-30T04:56:29.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-09-03T20:30:02.000Z (over 7 years ago)
- Last Synced: 2024-12-06T21:37:58.589Z (6 months ago)
- Topics: c-plus-plus, memory-hacking, windows
- Language: C++
- Size: 11.7 KB
- Stars: 13
- Watchers: 3
- Forks: 4
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LoadLibrary
A simple dll injector for windows based on WINAPI's LoadLibrary function.
The Inject project compiles a simple dll that pops up a messagebox on successful injection.# Usage
Configure the *config.ini* file, stored in the same directory as the program, with the name of the executable to inject into and the name of the dll to be injected like so:
```
[Options]
process="calc.exe"
dll="inject.dll"
```