mirror of
https://github.com/kmanc/remote_code_oxidation
synced 2026-06-08 15:21:46 +00:00
8c301f64f00a9f8db680fe4244021f590b15c3e3
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%