http://blog.gmane.org/gmane.comp.security.openwall.john.user/month=20140601
error: No MPI compiler found john the ripper
brew install openssl
brew link openssl --force
http://apple.stackexchange.com/questions/208848/install-john-the-ripper-jumbo
git clone https://github.com/magnumripper/JohnTheRipper jumbo
cd jumbo/src
./configure
make clean && make -s
pip install bsddb3
Thanks for the info @mubix!
On High Sierra I had to make a couple of changes, as I was getting the following error during compilation:
checking whether the C compiler works... no
So, I didn't install gcc in Homebrew and then left that flag (
CC="gcc-6"
) out of the compile flags, while also adding the--disable-pkg-config
option, so it looked like this:./configure CPPFLAGS="-I/usr/local/opt/openssl/include" LDFLAGS="-L/usr/local/opt/openssl/lib" --disable-pkg-config