Forked from MattyBonBon/brew-install-kali-tools.sh
Last active
November 26, 2024 09:35
-
-
Save kordovero/db3359fb0fea5f7289400ae025a0fe0b to your computer and use it in GitHub Desktop.
Script to install kali tools that are already included in homebrew
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # | |
| # Created from crossmatching katoolin listing & brew search | |
| # to execute: | |
| # $ sh "/path/to/file" | |
| # | |
| echo "Checking for ๐บ..." | |
| if test ! $(which brew); then | |
| echo "Installing homebrew (๐บ)..." | |
| ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)" | |
| fi | |
| echo "Updating ๐บ..." | |
| brew update | |
| TOOLS=( | |
| amap | |
| dnsmap | |
| dnstracer | |
| fragroute | |
| masscan | |
| nmap | |
| p0f | |
| recon-ng | |
| sslsplit | |
| sslyze | |
| theharvester | |
| lynis | |
| nmap | |
| sqlmap | |
| aircrack-ng | |
| mfcuk | |
| mfoc | |
| mfterm | |
| reaver | |
| gobuster | |
| recon-ng | |
| skipfish | |
| sqlmap | |
| wpscan | |
| mitmproxy | |
| sipp | |
| sslsplit | |
| wireshark | |
| dns2tcp | |
| httptunnel | |
| pwnat | |
| winexe | |
| dos2unix | |
| exploitdb | |
| sqlmap | |
| binwalk | |
| dc3dd | |
| ddrescue | |
| volatility | |
| foremost | |
| p0f | |
| reaver | |
| slowhttptest | |
| crunch | |
| hydra | |
| john | |
| ncrack | |
| thc-pptp-bruter | |
| truecrack | |
| apktool | |
| smali | |
| ) | |
| echo "Installing CLI Tools..." | |
| brew install ${TOOLS[@]} | |
| CASKTOOLS=( | |
| gqrx | |
| vega | |
| wireshark | |
| armitage | |
| crunch | |
| jad | |
| arduino | |
| maltego | |
| ) | |
| echo "Installing Cask (GUI/ App) Tools..." | |
| brew install --cask ${CASKTOOLS[@]} | |
| echo "Cleaning up..." | |
| brew cleanup | |
| echo " " | |
| echo "All Done ๐" | |
| echo "Enjoy ๐" |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Fix: corrected, updated Cask install to new brew syntax, "brew cask install" to "brew install --cask"