Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 528 Bytes

README.md

File metadata and controls

17 lines (13 loc) · 528 Bytes

RustDllPoc

Proof of concept DLL written in Rust. Used in other projects to test DLL injection and other DLL-related attacks.

Exports a DllMain function that spawns a message box using the MessageBoxW Windows API call.

Build

# debug
cargo build

# release
cargo build --release

References