https://github.com/kristofhracza/roids
Simple DLL injector
https://github.com/kristofhracza/roids
dll dll-injection dll-injector game-hacking hooking win32-api windows x32 x64
Last synced: about 2 months ago
JSON representation
Simple DLL injector
- Host: GitHub
- URL: https://github.com/kristofhracza/roids
- Owner: kristofhracza
- Created: 2023-10-29T23:37:32.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2023-10-29T23:39:03.000Z (over 1 year ago)
- Last Synced: 2025-02-10T03:16:05.934Z (4 months ago)
- Topics: dll, dll-injection, dll-injector, game-hacking, hooking, win32-api, windows, x32, x64
- Language: C++
- Homepage:
- Size: 4.88 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# :syringe: Roids
The common man's injector## Usage
1. Start `roids.exe`
2. Enter the *PID* of the target process
3. Press the `Inject DLL` button and select your file## Find PID of a process
```powershell
# PROCESSNAME is `notepad` in this case
ps | findstr# You will need the 6th number (22100)
239 14 3124 15124 0.11 22100 3 notepad
```## Compiling from source
Open `roids.sln` in Visual Studio 2022, set build configuration to `Release | x64`.
Press Build solution and you should receive `roids.exe` file.