auto commit by gitter function
This commit is contained in:
parent
d5b3122d8f
commit
b99c3f1da4
|
@ -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
|
||||
|
||||
|
|
|
@ -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"
|
|
@ -0,0 +1,17 @@
|
|||
curl
|
||||
enum4linux
|
||||
gobuster
|
||||
nbtscan
|
||||
nikto
|
||||
nmap
|
||||
onesixtyone
|
||||
oscanner
|
||||
smbclient
|
||||
smbmap
|
||||
smtp-user-enum
|
||||
snmp
|
||||
sslscan
|
||||
sipvicious
|
||||
tnscmd10g
|
||||
whatweb
|
||||
wkhtmltopdf
|
Loading…
Reference in New Issue