diff options
author | Mathias Bynens <mathias@qiwi.be> | 2014-09-23 16:08:29 +0200 |
---|---|---|
committer | Mathias Bynens <mathias@qiwi.be> | 2014-10-01 22:02:44 +0200 |
commit | 391d1884b36f2459324de8393dad988352771a6a (patch) | |
tree | 1f1c1d8fcd57d434668630f1cd87c0adb66a81c1 | |
parent | ab9c1785d8c95acdfbf47f2f0f3da72ca6026ca3 (diff) | |
download | dotfiles-391d1884b36f2459324de8393dad988352771a6a.tar.gz dotfiles-391d1884b36f2459324de8393dad988352771a6a.tar.bz2 dotfiles-391d1884b36f2459324de8393dad988352771a6a.zip |
Brewfile: add some CTF tools
See https://github.com/ctfs/write-ups for more info.
-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 |