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: about 1 month ago
JSON representation
Remote process DLL Injection in Rust
- Host: GitHub
- URL: https://github.com/0xflux/rust-remote-process-dll-injection
- Owner: 0xflux
- Created: 2024-03-23T10:26:38.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2024-03-25T21:31:29.000Z (about 2 years ago)
- Last Synced: 2025-10-20T03:59:37.497Z (8 months ago)
- Topics: dll-injection, dll-injector, ethical-hacking, hacking, injector, penetration-testing, penetration-testing-tools, rust, windows
- Language: Rust
- Homepage: https://fluxsec.red
- Size: 4.88 KB
- Stars: 4
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: Readme.md
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
```

