ditch non-windows dll proxying and split the code

Signed-off-by: Dimitris Zervas <dzervas@dzervas.gr>
This commit is contained in:
Dimitris Zervas
2024-04-14 00:57:58 +03:00
parent 7c8105fc47
commit a5a0153d31
6 changed files with 62 additions and 113 deletions

9
src/loader_unix.rs Normal file
View File

@ -0,0 +1,9 @@
use ctor::ctor;
use crate::injector::attach_self;
#[ctor]
fn _start() {
println!("[+] frida-deepfreeze-rs library injected");
attach_self();
}