mirror of
https://github.com/kmanc/remote_code_oxidation
synced 2026-06-08 15:21:46 +00:00
22c0530946
* 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
1.1 KiB
1.1 KiB
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]