injex 0.1.0

Gives users the possibility to inject into and manipulate processes
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
use injex::prelude::*;

fn main() {
    let process = AnonManipulator::new("").unwrap();
    println!(
        "Assaultcube Reloaded process found succesfully: {}",
        process.pid()
    );
    inject(
        &process,
        process.pid(),
        "/home/tom/Git/injector/examples/internal/target/debug/libinternal.so",
    )
    .unwrap();
}