This repository has been archived on 2024-12-20. You can view files and clone it, but cannot push or open issues or pull requests.
Yanagi-Patch/yanagi/src/lib.rs
2024-11-25 02:45:23 +03:00

56 lines
1.4 KiB
Rust

#![feature(str_from_utf16_endian)]
use std::{thread, time::Duration};
use interceptor::Interceptor;
use modules::{
crypto::{
initialize_rsa_public_key, monitor_network_state, replace_sdk_public_key_string_literal,
},
network::Network,
NapModuleManager,
};
use windows::{
core::s,
Win32::{
Foundation::HINSTANCE,
System::{Console, LibraryLoader::GetModuleHandleA, SystemServices::DLL_PROCESS_ATTACH},
},
};
mod interceptor;
mod modules;
mod util;
unsafe fn thread_fn() {
let _ = Console::AllocConsole();
while GetModuleHandleA(s!("GameAssembly.dll")).is_err() {
thread::sleep(Duration::from_millis(200));
}
thread::sleep(Duration::from_secs(5));
util::disable_memory_protection();
let mut module_manager = NapModuleManager::default();
module_manager.add::<Network>();
module_manager.init().expect("failed to initialize modules");
initialize_rsa_public_key();
replace_sdk_public_key_string_literal();
let mut interceptor = Interceptor::default();
monitor_network_state(&mut interceptor);
thread::sleep(Duration::from_secs(u64::MAX));
}
#[no_mangle]
#[allow(non_snake_case)]
unsafe extern "system" fn DllMain(_: HINSTANCE, call_reason: u32, _: *mut ()) -> bool {
if call_reason == DLL_PROCESS_ATTACH {
thread::spawn(|| thread_fn());
}
true
}