Hi,
I'm using this script to compile and install sslscan on OS X:
#!/bin/bash
TEMPDIR=~/.compilesslscan
rm -Rf $TEMPDIR
mkdir $TEMPDIR
cd $TEMPDIR
git clone https://github.com/rbsec/sslscan.git
cd sslscan
make static
sudo make -B install
rm -Rf $TEMPDIR
sslscan --version
Everything works fine, except
sudo make -B install
fails:
cp sslscan /usr/bin/
cp: /usr/bin/sslscan: Operation not permitted
In OS X 10.11 it is is not allowed to to change the content of /user/bin.
But from what I see, /usr/local/bin is possible and it is in the PATH environment.