12 lines
168 B
Rust
Raw Normal View History

pub mod injector;
pub use injector::{inject, inject_self};
use ctor::ctor;
#[ctor]
fn _start() {
println!("[+] frida-deepfreeze-rs SO injected");
inject_self();
}