SSL cipher and protocol scanner in Crystal
git clone https://github.com/bararchy/sslscanner
cd sslscanner
make # or make static
Add this to your application's shard.yml
:
dependencies:
sslscanner:
github: bararchy/sslscanner
require "sslscanner"
# This will start a scan of google.com
scanner = SSLScanner::Scan.new("google.com", 443)
scanner.run
Or you can use the example under /bin
make
./scan google.com 443
- Add more issues (SSL Issues)
- Multiscanning (using fibers)
- Export results to pdf\txt\csv\etc..
- Add local OpenSSL installation with all ciphers enabled so we don't need to relay on system openssl
- Add more checks: HeartBleed, compression, renegotiation, etc..
- Add better output formatting, spaces, colors, maybe table of some sort
- Add OptionParser to the bin instead of using ARGV
- Fork it ( https://github.com/bararchy/sslscanner/fork )
- Create your feature branch (git checkout -b my-new-feature)
- Commit your changes (git commit -am 'Add some feature')
- Push to the branch (git push origin my-new-feature)
- Create a new Pull Request
- bararchy - creator, maintainer