diff options
Diffstat (limited to 'Brewfile')
-rwxr-xr-x | Brewfile | 30 |
1 files changed, 23 insertions, 7 deletions
@@ -10,6 +10,8 @@ upgrade # Install GNU core utilities (those that come with OS X are outdated) # Don’t forget to add `$(brew --prefix coreutils)/libexec/gnubin` to `$PATH`. install coreutils +#sudo ln -s /usr/local/bin/gsha256sum /usr/local/bin/sha256sum + # Install some other useful utilities like `sponge` install moreutils # Install GNU `find`, `locate`, `updatedb`, and `xargs`, `g`-prefixed @@ -35,27 +37,41 @@ install homebrew/dupes/grep install homebrew/dupes/screen install homebrew/php/php55 --with-gmp +# Install some CTF tools; see https://github.com/ctfs/write-ups +install bfg +install binwalk +install dex2jar +install dns2tcp +install fcrackzip +install foremost +install hashpump +install hydra +install john +install knock +install nmap +install pngcheck +install sqlmap +install tcpflow +install tcpreplay +install tcptrace +install ucspi-tcp # `tcpserver` et al. +install xpdf +install xz + # Install other useful binaries install ack -install bfg #install exiv2 -install foremost install git -install hashpump install imagemagick --with-webp install lynx -install nmap install node # This installs `npm` too using the recommended installation method install p7zip install pigz install pv install rename install rhino -install sqlmap install tree -install ucspi-tcp # `tcpserver` et al. install webkit2png -install xpdf install zopfli install homebrew/versions/lua52 |