Files
kmanc-remote_code_oxidation/README.md
T
kmanc 22c0530946 Windows process migration (#2)
* broken link

* update toml for next tool: process injection

* boilerplating for shellcode injector

* some stubs, need internet to go futher

* link time optimization drastically reduces the size of windows executables - will have to investigate drawbacks when i have internet

* readme update prep

* small typing optimization

* New Windows dependencies for process injection

* msfvenom reverse tcp shell to localhost 4444 as example shellcode

* Windows shellcode injection to the explorer.exe process

* placeholder

* small bump for the half-feature completion
2021-12-20 04:52:58 -08:00

1.1 KiB

Remote code oxidation (RCO)

version

A collection of offensive security tools written in Rust. More details to come

Tools list

Compilation

From Linux host for Linux target

Install Rust

curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh

Set up Environment

sudo apt install cmake

Build!

cargo build [--release]

From Linux host for Windows target

Add dependencies for cross-compiling

sudo apt install mingw-w64
rustup target add x86_64-pc-windows-gnu

Build!

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