mirror of
https://github.com/P-Aimon-Pen/ROFMAD
synced 2026-06-21 13:45:02 +00:00
16 lines
414 B
Bash
Executable File
16 lines
414 B
Bash
Executable File
# /bin/bash
|
|
echo "\n"
|
|
echo "\n Preparing system for ROFMAD \!"
|
|
echo "\n"
|
|
sudo apt update
|
|
sudo apt install nmap masscan arp-scan tcpdump
|
|
echo "\n"
|
|
echo "\n Compiling ROFMAD \!"
|
|
echo "\n"
|
|
rustup target add x86_64-unknown-linux-musl
|
|
echo "\n"
|
|
cargo build --release --target x86_64-unknown-linux-musl
|
|
echo "\n"
|
|
cp target/x86_64-unknown-linux-musl/release/ROFMAD ./
|
|
echo "\n"
|
|
echo "\n ROFMAD is now ready to launch \!" |