Skip to content

Instantly share code, notes, and snippets.

@HarmJ0y
Last active May 12, 2021 08:33
  • Star 6 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
Star You must be signed in to star a gist
Embed
What would you like to do?
This short script will install Metasploit as well as Veil-Evasion on Ubuntu
#!/bin/bash
sudo apt-get install git
cd /tmp/
git clone https://github.com/darkoperator/MSF-Installer.git
cd MSF-Installer
sudo ./msf_install.sh -i
source ~/.bashrc
sudo chmod 0666 /usr/local/share/metasploit-framework/log/production.log
mkdir ~/tools/ && cd ~/tools/
git clone https://github.com/Veil-Framework/Veil-Evasion.git
cd Veil-Evasion/setup/
./setup.sh
cd ..
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment