Created
August 7, 2020 17:24
-
-
Save greenmind-sec/6fdb1e785d828bccfdc529b50134dd6f to your computer and use it in GitHub Desktop.
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/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