Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/0xflux/rust-remote-process-dll-injection
- Owner: 0xflux
- Created: 2024-03-23T10:26:38.000Z (10 months ago)
- Default Branch: master
- Last Pushed: 2024-03-25T21:31:29.000Z (10 months ago)
- Last Synced: 2024-11-20T22:58:57.777Z (2 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: 0
- Watchers: 1
- Forks: 1
- 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
```![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)