mirror of
https://github.com/kmanc/remote_code_oxidation
synced 2026-06-08 15:21:46 +00:00
2fca80c33ac81a98e3f683ebf7c3642cd2c03a7d
Remote code oxidation (RCO)
A collection of offensive security tools written in Rust. More details to come
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]
basic_tcp_reverse_shell
A simple TCP reverse shell, no bells or whistles.
Navigate to its config file and change the IP address and port before compiling
Languages
Rust
100%