Crates.io | marauder |
lib.rs | marauder |
version | 0.1.0 |
source | src |
created_at | 2023-11-15 09:31:47.565669 |
updated_at | 2023-11-15 09:31:47.565669 |
description | A utility library for hacking/reading memory of processes/games. |
homepage | |
repository | https://github.com/steele123/marauder |
max_upload_size | |
id | 1036332 |
size | 67,764 |
marauder is a windows (maybe eventually other OS) game hacking (kinda?) library, it's main goal is to make it easy to create DLLs and inject them into processes. It also provides some utilities for reading/writing memory and currently plans to support belong D3D hooks of all kinds.
Below will be a bunch of examples, if you want more indepth examples typically with comments you can check out the examples directory
#[marauder::dll_main]
fn main() {
// This is a fully functional DLL ready for injection!
println!("I am a DLL inside the process, my module handle is: {}!", module_handle);
}
// We also support async! By default making your dll_main async you will be running on the tokio runtime
#[marauder::dll_main]
async fn main() {
}
fn main() {
let dll_path = std::env::var("dll_path").expect("You must provide a dll path");
let path = std::path::Path::new(&dll_path);
if !path.exists() {
panic!("The DLL doesn't exist at {}", dll_path);
}
// By default the config will use a LoadLibrary injection with no stealth
let config = Config::default();
let injector = Injector::new(config);
let pid = marauder::windows::utils::get_process_id("target_process.exe").unwrap();
injector.inject(pid, &dll_path).unwrap();
println!("Successfully Injected!")
}