https://github.com/ohchase/yai
Yet Another Injector for windows dlls supports x32 and x64
https://github.com/ohchase/yai
hacking injection video-game windows
Last synced: 2 months ago
JSON representation
Yet Another Injector for windows dlls supports x32 and x64
- Host: GitHub
- URL: https://github.com/ohchase/yai
- Owner: ohchase
- Created: 2022-10-16T20:55:25.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-05-25T14:15:16.000Z (about 2 years ago)
- Last Synced: 2026-03-27T22:39:42.707Z (3 months ago)
- Topics: hacking, injection, video-game, windows
- Language: Rust
- Homepage:
- Size: 15.6 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Yai
Yet Another Injector for windows x64 dlls
```
Yet Another Injector for windows x64 dlls.
Usage: yai.exe --target --payload
Options:
-t, --target Process name to inject into
-p, --payload Absolute path to payload dll
-h, --help Print help information
-V, --version Print version information
```
### Library
You can use `yai` as a library as well. Add `yai` to your `Cargo.toml` and call `yai::inject_into`:
```rust
yai::inject_into("payload.dll", 1234 /* process id */);
```