Last active
December 23, 2024 23:27
-
-
Save d3fc0nmm/5bea213e18073b21a5c0b8c706e2897a to your computer and use it in GitHub Desktop.
Kali GOAD Quick Install
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #requirements | |
| - Latest Kali | |
| - 8 CPU Cores | |
| - enable: Expose hardware assisted virtualization to the guest OS | |
| - 32 GB Rams | |
| - >150GB storage | |
| #increate swap or make the partition bigger during install | |
| sudo fallocate -l 5G /swapfile | |
| sudo chmod 600 /swapfile | |
| sudo mkswap /swapfile | |
| sudo swapon --priority 100 /swapfile | |
| #install stuffs | |
| sudo apt install virtualbox linux-headers-generic | |
| sudo apt update && sudo apt install vagrant | |
| vagrant plugin install vagrant-reload vagrant-vbguest winrm winrm-fs winrm-elevated | |
| sudo apt install sshpass lftp rsync openssh-client python3-venv | |
| #Install GOAD | |
| cd /opt | |
| sudo git clone https://github.com/Orange-Cyberdefense/GOAD.git | |
| sudo chown -R ctfuser: GOAD | |
| cd GOAD | |
| ./goad.sh -t check -l GOAD -p virtualbox | |
| #have a smoke, lunch, and dinner break for the next one... | |
| ./goad.sh -t install -l GOAD -p virtualbox | |
| # launch goad in interactive mode | |
| ./goad.sh |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment