Skip to content

Commit

Permalink
Added unzip dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
bellma101 committed Mar 29, 2019
1 parent f6026de commit 72bdbab
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions installer.sh
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ TOOLS="$HOME/bounty/tools";

function install_kali() {
echo -e "$GREEN""Installing for Kali.""$NC";
sudo apt-get install git wget curl nmap masscan whatweb sublist3r gobuster nikto wafw00f chromium openssl libnet-ssleay-perl p7zip-full build-essential python-pip python3-pip -y;
sudo apt-get install git wget curl nmap masscan whatweb sublist3r gobuster nikto wafw00f chromium openssl libnet-ssleay-perl p7zip-full build-essential python-pip python3-pip unzip -y;
install_pip;
install_dnscan;
install_bfac;
Expand All @@ -28,7 +28,7 @@ function install_kali() {
}
function install_debian() {
echo -e "$GREEN""Installing for Debian.""$NC";
sudo apt-get install git wget curl nmap masscan whatweb chromium openssl libnet-ssleay-perl p7zip-full build-essential python-pip python3-pip -y;
sudo apt-get install git wget curl nmap masscan whatweb chromium openssl libnet-ssleay-perl p7zip-full build-essential python-pip python3-pip unzip -y;
install_pip;
sudo pip install wafw00f;
install_dnscan;
Expand All @@ -45,7 +45,7 @@ function install_debian() {
}
function install_ubuntu() {
echo -e "$GREEN""Installing for Ubuntu.""$NC";
sudo apt-get install git wget curl nmap masscan nikto whatweb wafw00f chromium-browser python-pip python3-pip p7zip-full -y;
sudo apt-get install git wget curl nmap masscan nikto whatweb wafw00f chromium-browser python-pip python3-pip p7zip-full unzip -y;
install_pip;
install_dnscan;
install_bfac;
Expand Down

0 comments on commit 72bdbab

Please sign in to comment.