Created
April 19, 2019 22:41
-
-
Save JupyterJones/36f0a65f463e1a377566ffc8257f909b to your computer and use it in GitHub Desktop.
Script to install beef in Ubuntu 18.04
This file contains 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
#!/bin/bash | |
sudo apt install ruby-full | |
git clone https://github.com/beefproject/beef | |
cd beef | |
# Inserts the line | |
#gem 'xmlrpc' in line 28 | |
sed -i "28i gem 'xmlrpc'" Gemfile | |
sudo ./install | |
echo "IMPORTANT:" | |
echo "Make sure to change user and password in:" | |
echo "beef/config.yaml" | |
echo " ---------------------- " | |
echo " run ./beef" | |
echo "Then open: http://172.20.0.1:3000/ui/panel in your browser " |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment