Skip to content

Instantly share code, notes, and snippets.

@robmiller
Last active August 16, 2017 13:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save robmiller/a229e532125f96a19cf8b1fc52d8d91e to your computer and use it in GitHub Desktop.
Save robmiller/a229e532125f96a19cf8b1fc52d8d91e to your computer and use it in GitHub Desktop.
ssl-check: checks for expiring SSL certificates. Useful for piping into Slack on a cron
#!/usr/bin/env ruby
#
# ssl-check
#
# Checks for expiring SSL certificates, specified on the command line.
#
# Usage:
#
# $ ssl-check hosts.txt
#
# …where hosts.txt contains e.g.:
#
# example.com
#
# Sample output:
#
# $ ssl-check
# SSL certificate for example.com is expiring within 21 days, on 2017-03-24
#
# If any of the certificates are expired/expiring, the script's exit
# status will be 1; if all certs are valid, the exit status will be 0.
require "net/http"
require "openssl"
require "date"
# How many days before expiry should we begin to warn?
CUTOFF = 14
# If true, information about all certificates will be output, not just
# the ones that are close to expiring
VERBOSE = false
unless ARGV[0]
abort "Usage: ssl-check HOSTS_FILE"
end
domains = File.read(ARGV[0]).lines.map { |h| h.strip.downcase }
unless domains.length > 0
abort "No domains specified in hosts file"
end
problems = false
domains.each do |domain|
uri = URI.parse("https://" + domain)
http = Net::HTTP.new(uri.host, uri.port)
http.use_ssl = true
http.verify_mode = OpenSSL::SSL::VERIFY_NONE
cert = nil
http.start do |h|
cert = h.peer_cert
end
unless cert
problems = true
puts "#{domain}: couldn't find SSL certificate"
next
end
expiry = cert.not_after
expiry_in_days = expiry.to_date - Date.today
if expiry_in_days < CUTOFF
problems = true
puts "#{domain}: SSL certificate is expiring in #{expiry_in_days.to_i} days, on #{expiry.strftime("%Y-%m-%d")}"
next
end
# At this point, we must have a valid certificate
if VERBOSE
puts "#{domain}: SSL certificate is valid and doesn't expire until #{expiry.strftime("%Y-%m-%d")}"
end
end
if problems
exit 1
else
puts "All's well."
exit 0
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment