Skip to content

0xflux/Rust-Remote-Process-DLL-Injection

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Remote DLL Injection

This Rust project injects a DLL from disk into a remote process, to run you need to edit the path to the DLL you are injecting, found here:

    let path_to_dll = "path\\to\\dll\\rust_dll.dll";

And when running, you must specify the PID of the process you are injecting into:

cargo run -- 123

image

image