Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/0xflux/rust-remote-process-dll-injection

Remote process DLL Injection in Rust
https://github.com/0xflux/rust-remote-process-dll-injection

dll-injection dll-injector ethical-hacking hacking injector penetration-testing penetration-testing-tools rust windows

Last synced: 5 days ago
JSON representation

Remote process DLL Injection in Rust

Awesome Lists containing this project

README

        

# 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:

```rust
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:

```shell
cargo run -- 123
```

![image](https://github.com/0xflux/Rust-Remote-Process-DLL-Injection/assets/49762827/db46804e-6b46-4623-b6de-b4560104851c)

![image](https://github.com/0xflux/Rust-Remote-Process-DLL-Injection/assets/49762827/8bf01304-3252-4354-a6b0-8d56461d113a)