Rust-for-Malware-Development

How to Compile the Repository source code.

Make sure you have rust installed. Click here to install Rust

Step 1: Create an new package

cargo new [name]

cargo-package


cargo new maldev

Import the code you want to execute or build it.

import_code


Before that, make sure you have imported the winapi package.


deps_code


[COPY IT]


deps_copy


Build the project!

For compiling the project, go into the project directory and execute: cargo build

This will use your default toolchain. If you want to build the final “release” version execute: cargo build --release


build_project


You can see the build file in the Target -> Release path.


build_path


Finally, executing it. Running the calc.exe shellcode!


exec_path