0

I am trying to install SSLScan from source. I cloned the git repo from

https://github.com/DinoTools/sslscan.git

And did the following:

mkdir build
cd build
cmake ..
make
make install

I will note however, that the yum repo was installing cmake v2.6, so I hacked it to be 2.8 by doing the following:

wget http://dl.fedoraproject.org/pub/epel/6/x86_64/epel-release-6-8.noarch.rpm
rpm -ivh epel-release-6-8.noarch.rpm
yum install cmake28
cd /usr/bin
mv cmake cmake26
mv ccmake ccmake26
mv cpack cpack26
mv ctest ctest26
ln -s cmake28 cmake
ln -s ccmake28 ccmake
ln -s cpack28 cpack
ln -s ctest28 ctest

Don't know what's going on but when I try to run

sslscan localhost

I get the following error:

ImportError: No module named sslscan

Any help on this would be greatly appreciated!

Thanks in advance!

4

1 回答 1

0

尝试通过调用手动安装模块:

./build/python/python setup.py install

然后sslscan再次运行。

于 2014-12-10T21:46:18.547 回答