Skip to content

Instantly share code, notes, and snippets.

@reinforchu
Created August 2, 2015 16:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save reinforchu/952230257fa8e400e378 to your computer and use it in GitHub Desktop.
Save reinforchu/952230257fa8e400e378 to your computer and use it in GitHub Desktop.
SSLscan Install Script for OS X
#!/bin/bash
mkdir ~/Desktop/tmp
cd ~/Desktop/tmp
git clone https://github.com/rbsec/sslscan.git
cd sslscan
wget https://www.openssl.org/source/openssl-1.0.2d.tar.gz
tar -xzvf openssl-1.0.2d.tar.gz
mv openssl-1.0.2d.tar.gz openssl
xcode-select --install
cd openssl
./Configure darwin64-x86_64-cc
make
cd ../
make static
sudo cp sslscan /usr/bin/
sslscan
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment