joaoviictorti / processinjection-rs

Process Injection - Shellcode (Rust)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Process Injection with Rust 🦀

Overview

This repository is a proof of concept for performing Process Injection attacks using the Rust language

Compile

First perform the compilation with the command:

cargo build --release

If you are using a different operating system, you can use rustup and add the windows architecture:

rustup target add x86_64-pc-windows-gnu

Then compile specifying the architecture:

cargo build --release --target x86_64-pc-windows-gnu

Usage

You can run with cargo run or the compiled binary directly:

cargo run
target/release/processinjection.exe

About

Process Injection - Shellcode (Rust)


Languages

Language:Rust 100.0%