Wednesday, May 24, 2017

Installing SSLyze

Ideally SSLyze should install without much issues.

Command:
pip3 install sslyze

If you get errors regarding cryptography or some certificate errors, try the following
Error: fatal error: openssl/opensslv.h: No such file or directory

pip3 uninstall sslyze
pip3 uninstall cyptography

sudo apt-get update && sudo apt-get install libssl-dev

pip3 install sslyze


Now sslyze commands should work fine if the errors were the ones above.

~Sujith Emmanuel

No comments:

Installing SSLyze

SSLyze is a Python tool that can analyze the SSL configuration of a server by connecting to it. It is designed to be fast and comprehensive,...