Skip to content

Instantly share code, notes, and snippets.

@greenmind-sec
Created August 7, 2020 17:24
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save greenmind-sec/6fdb1e785d828bccfdc529b50134dd6f to your computer and use it in GitHub Desktop.
Save greenmind-sec/6fdb1e785d828bccfdc529b50134dd6f to your computer and use it in GitHub Desktop.
#!/bin/sh
echo "Atualiza pacotes"
apt -y update
echo "Instalar [WGET]"
apt install wget -y
echo "Download Nessus"
cd /tmp && wget "https://github.com/greenmind-sec/nessus-server/raw/master/Nessus-8.11.0-debian6_amd64.deb"
echo "Install Nessus"
cd /tmp && dpkg -i Nessus-8.11.0-debian6_amd64.deb
echo "Iniciar [Nessus]"
/etc/init.d/nessusd start
systemctl start nessusd
echo "Enable [Nessus]"
systemctl enable nessusd
echo "Status Nessus"
systemctl status nessusd
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment