From e0a36c05ebb24dd792bd03e0cf0a2fa480da66e3 Mon Sep 17 00:00:00 2001 From: xer0dayz <1N3@hushmail.com> Date: Tue, 18 Aug 2020 15:25:18 -0700 Subject: [PATCH] Update install.sh Just made a small change to forward errors to /dev/null since some packages might not be available on Ubuntu by default. --- install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 9ca1174..80b52a0 100755 --- a/install.sh +++ b/install.sh @@ -67,7 +67,7 @@ fi echo -e "$OKBLUE[*]$RESET Installing package dependencies...$RESET" apt-get update for i in adb aha curl cutycapt dnsrecon dos2unix golang greenbone-security-assistant host hydra jq jsbeautifier ldapscripts libssl-dev libxml2-utils nbtscan net-tools nfs-common nikto nmap nodejs openvas p7zip-full phantomjs php7.4 php7.4-curl python python-pip python3-paramiko python3-pip rpcbind ruby rubygems sqlmap sslscan wafw00f whatweb whois xdg-utils xmlstarlet xsltproc; do - apt install -y $i + apt install -y $i 2>/dev/null done echo -e "$OKBLUE[*]$RESET Installing Metasploit...$RESET"