2015-12-06 04:11:22 +00:00
|
|
|
class Sslscan < Formula
|
|
|
|
desc "Test SSL/TLS enabled services to discover supported cipher suites."
|
|
|
|
homepage "https://github.com/rbsec/sslscan"
|
2015-12-19 23:36:40 +00:00
|
|
|
url "https://github.com/rbsec/sslscan/archive/1.11.1-rbsec.tar.gz"
|
|
|
|
version "1.11.1"
|
|
|
|
sha256 "0631713b16cea51df49b9666aa17e742e8177d79e85bdb13f66105657c98f169"
|
2015-12-06 04:11:22 +00:00
|
|
|
head "https://github.com/rbsec/sslscan.git"
|
|
|
|
|
|
|
|
depends_on "openssl"
|
|
|
|
|
|
|
|
def install
|
|
|
|
system "make"
|
|
|
|
bin.install "sslscan"
|
|
|
|
end
|
|
|
|
|
|
|
|
test do
|
|
|
|
system "#{bin}/sslscan", "google.com"
|
|
|
|
end
|
|
|
|
end
|