From 44332bffb04072a9f06b65e34ec336b619c9d294 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?F=C3=A9lix=20Aim=C3=A9?= Date: Fri, 2 Dec 2022 09:03:06 +0100 Subject: [PATCH] Update install.sh --- install.sh | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/install.sh b/install.sh index 6bae0e1..ec56483 100644 --- a/install.sh +++ b/install.sh @@ -159,6 +159,8 @@ install_package() { apt-get install -y dnsutils elif [[ $1 == "pip" ]]; then apt-get install -y python3-pip + elif [[ $1 == "arp" ]]; then + apt-get install -y net-tools fi } @@ -169,7 +171,8 @@ check_dependencies() { "/usr/bin/dig" "/usr/bin/suricata" "/usr/bin/sqlite3" - "/usr/bin/pip") + "/usr/bin/pip", + "/usr/sbin/arp") echo -e "\e[39m[+] Checking dependencies...\e[39m" for bin in "${bins[@]}"