2024-04-16 19:20:45 +03:00
|
|
|
#![cfg(all(unix, not(test)))]
|
2024-04-14 00:57:58 +03:00
|
|
|
use ctor::ctor;
|
|
|
|
|
|
|
|
use crate::injector::attach_self;
|
|
|
|
|
|
|
|
#[ctor]
|
|
|
|
fn _start() {
|
2024-04-15 21:53:28 +03:00
|
|
|
println!("[+] InjectionForge library injected");
|
2024-04-14 00:57:58 +03:00
|
|
|
attach_self();
|
|
|
|
}
|