-
-
Save MattyBonBon/4e1ebf189eafbca953df318db78a2339 to your computer and use it in GitHub Desktop.
| # | |
| # 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 cask install ${CASKTOOLS[@]} | |
| echo "Cleaning up..." | |
| brew cleanup | |
| echo " " | |
| echo "All Done π" | |
| echo "Enjoy π" |
@hendahmed1997 Looks like httprint isn't on brew at this time.
Net-square provides a MacOS package directly from their site though: https://www.net-square.com/httprint.html
Update version
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[@]}
brew update
CASKTOOLS=(
gqrx
vega
wireshark
armitage
crunch
jad
arduino
maltego
)
echo "Installing Cask (GUI/ App) Tools..."
brew install ${CASKTOOLS[@]}
echo "Cleaning up..."
brew cleanup
echo " "
echo "All Done π"
echo "Enjoy π"
httprint how can I install it using brew
please