mirror of
https://github.com/kmanc/remote_code_oxidation
synced 2026-06-08 15:21:46 +00:00
c7b118babbd8a9606868682c9449174d27e1f7ad
* Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md * Update README.md
Remote Code Oxidation (RCO)
Remote Code Oxidation is a collection of offensive security tools written in Rust. My main goal for the project is to enable offensive security professionals and practitioners to prepare the tools needed for an engagement with as little overhead as possible.
RCO tools can be compiled on either Linux or Windows systems to provide its users flexibility in their attack infrastructure. Similarly the tools work against either Linux or Windows targets to suit the needs of the task at hand.
Tools list
Setup
Clone the repo
git clone https://github.com/kmanc/remote_code_oxidation.git
From Linux host for Linux target
Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
Add dependencies for compiling
sudo apt install build-essential
Build!
cargo build [-p package_name] [--features [xor][antisand]] [--release]
From Linux host for Windows target
Install Rust
curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs | sh
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 [-p package_name] [--features [xor][antisand]] [--release]
From Windows host for Linux target
####Todo
From Windows host for Windows target
####Todo
Languages
Rust
100%