An open API service indexing awesome lists of open source software.

https://github.com/joaoviictorti/processinjection-rs

Process Injection - Shellcode (Rust)
https://github.com/joaoviictorti/processinjection-rs

process-injection rust shellcode

Last synced: about 1 year ago
JSON representation

Process Injection - Shellcode (Rust)

Awesome Lists containing this project

README

          

# Process Injection with Rust 🦀




- [Overview](#overview)
- [Compile](#compile)
- [Usage](#usage)

# 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:

```sh
cargo build --release
```
If you are using a different operating system, you can use rustup and add the windows architecture:
```sh
rustup target add x86_64-pc-windows-gnu
```
Then compile specifying the architecture:
```sh
cargo build --release --target x86_64-pc-windows-gnu
```

# Usage

You can run with cargo run or the compiled binary directly:
```sh
cargo run
```
```sh
target/release/processinjection.exe
```