- ✨ Fusion injector
- 👍 Easy to configure
- 🚅 Monitor base on ETW
# windows-x86
cargo b --target=i686-pc-windows-msvc
# windows-x64
cargo b --target=x86_64-pc-windows-msvc
# for release
$env:RUSTFLAGS="--remap-path-prefix $HOME=~"
[global]
mode = 'native' # 'native' 'yapi' 'wow64ext'
exit = false # exit after injection
[easy] # optional
'x86.exe' = 'dlls/x86.dll'
[[mix]]
name = 'x86.exe'
dll = 'dlls/x86.dll'
delay = 0 # optional
[mix.limit] # optional
module = 'user32.dll' # optional
gui = true # optional
[[mix]]
name = 'x64.exe'
dll = 'dlls/x64.dll'
[mix.limit]
module = 'ws2_32.dll'
./injector.exe [config_path]
- ❌ [bug] YAPI and wow64ext is unstable, recommend using native mode
- Config Hot Reload
thx
YAPI -- Yet Another Process Injector @ez8-co
rewolf-wow64ext @rwfpl
pretty-env-logger @seanmonstar