Skip to content

Instantly share code, notes, and snippets.

@JupyterJones
Created April 19, 2019 22:41
Show Gist options
  • Save JupyterJones/36f0a65f463e1a377566ffc8257f909b to your computer and use it in GitHub Desktop.
Save JupyterJones/36f0a65f463e1a377566ffc8257f909b to your computer and use it in GitHub Desktop.
Script to install beef in Ubuntu 18.04
#!/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