diff --git a/README.md b/README.md index 8b867f7..0525f90 100644 --- a/README.md +++ b/README.md @@ -74,6 +74,12 @@ tnscmd10g whatweb wkhtmltoimage ``` +Some of them are part of packages with different names, and thus must be installed with those names (svwar is from the package "sipvicious" for example). A list of the packages can be found in "packages.txt". If you want to automate the installation of all these packages (not all are installed in Kali by default), use the provided install script like so: + +``` +$ chmod +x install-tools.sh +$ ./install-tools.sh +``` ## Usage diff --git a/install-tools.sh b/install-tools.sh new file mode 100755 index 0000000..4ff6f28 --- /dev/null +++ b/install-tools.sh @@ -0,0 +1,17 @@ +#!/bin/bash + +echo -e "\e[1;33m [+] Updating repositiories... \e[0m" +sudo apt -qq update && +echo -e "\e[1;32m [+] Repositories updated! \e[0m" + +echo -e "\e[1;33m [+] Installing tools from listing found in packages.txt... \e[0m" +while read package; do + sudo apt -qq install $package -y +done < packages.txt +echo -e "\e[1;32m [+] All tools and dependencies installed! \e[0m" + +echo -e "\e[1;33m [+] Cleaning system... \e[0m" +sudo apt -qq autoremove -y && +sudo apt -qq autoclean && +sudo apt -qq clean && +echo -e "\e[1;32m [+] Done! \e[0m" diff --git a/packages.txt b/packages.txt new file mode 100644 index 0000000..44b4e6b --- /dev/null +++ b/packages.txt @@ -0,0 +1,17 @@ +curl +enum4linux +gobuster +nbtscan +nikto +nmap +onesixtyone +oscanner +smbclient +smbmap +smtp-user-enum +snmp +sslscan +sipvicious +tnscmd10g +whatweb +wkhtmltopdf