Start working on dll proxying

This commit is contained in:
Dimitris Zervas
2023-05-25 17:48:18 +03:00
parent a5880b5bed
commit 4928bd9684
4 changed files with 97 additions and 5 deletions

View File

@ -42,7 +42,7 @@ pub fn inject(pid: u32) {
#[no_mangle]
pub fn inject_self() {
println!("[*] Attaching to self self");
println!("[*] Attaching to self (pid 0)");
inject(0);
}