mirror of
https://github.com/kmanc/remote_code_oxidation
synced 2026-06-08 15:21:46 +00:00
e487ca18b8da9ed3b853d28ced4ec6f6f5d05652
* versioning change; H.M.L where H=breaking change, M=non-breaking change, L=bugfix * updating gitignore * project structure to workspaces
Remote code oxidation (RCO)
A collection of offensive security tools written in Rust. More details to come
Tools list
- TCP reverse shell
- Navigate to its config file and change the IP address and port before compiling
- Shellcode injection and process migration
- Navigate to its config file and change the shellcode before compiling
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]
Languages
Rust
100%