1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
|
require 'custodian/testfactory'
require 'openssl'
require 'socket'
require 'uri'
require 'timeout'
#
# This is the class which tests the SSL certificate associated with a
# given URL.
#
class SSLCheck
ALL_TESTS = [:signature, :valid_from, :valid_to, :subject, :sslv3_disabled]
attr_reader :errors
# This is a helper for console-debugging.
def verbose( msg )
# nop
end
#
# Takes one parameter -- the URL.
#
def initialize(uri)
raise ArgumentError, "URI must be a string" unless uri.is_a?(String)
@uri = URI.parse(uri)
@domain = @uri.host
@key = nil
@certificate = nil
@certificate_store = nil
@tests = ALL_TESTS
@errors = []
end
#
# Returns the URI
#
def uri
@uri
end
alias :url :uri
#
# Returns the domain. This is initially set to the "host" part of the URI.
#
def domain
@domain
end
#
# Allows the domain to be set manually.
#
def domain=(d)
raise ArgumentError, "domain must be a String" unless d.is_a?(String)
@domain=d
end
#
# Returns the tests to be carried out for this URI
#
def tests
@tests
end
#
# Allows the tests to be set. Should an array of strings or symbols. Only
# ones from ALL_TESTS are taken. Anything else is ignored.
#
def tests=(ts)
raise ArgumentError, "tests must be an Array" unless ts.is_a?(Array)
@tests = ts.collect{|t| t.to_sym}.select{|t| ALL_TESTS.include?(t)}
@tests
end
#
# Returns the SSL key (if any)
#
def key
@key
end
#
# Allows an SSL RSA key to be set. Used for self-signed cert verification.
# Probably not much use here.
#
def key=(k)
raise ArgumentError, "key must be a String" unless k.is_a?(String)
if k =~ /-----BEGIN/
@key = OpenSSL::PKey::RSA.new(k)
else
@key = OpenSSL::PKey::RSA.new(File.read(k))
end
end
#
# This allows a bundle to be set. This is useful if a site is known to be
# serving a good cert+bundle, but for some reason openssl isn't validating it
# properly.
#
# This method is also used to include any peer_cert_chain from the SSL socket.
#
def bundle=(b)
if b.is_a?(String)
if b =~ /-----BEGIN CERT/
self.certificate_store.add_cert(OpenSSL::X509::Certificate.new(b))
else
self.certificate_store.add_file(b)
end
elsif b.is_a?(Array)
b.each do |c|
begin
self.certificate_store.add_cert(c)
rescue OpenSSL::X509::StoreError
# do nothing ..
end
end
elsif b.is_a?(OpenSSL::X509::Certificate)
self.certificate_store.add_cert(b)
else
raise ArgumentError, "bundle must be a String, an Array, or an OpenSSL::X509::Certificate"
end
b
end
#
# This returns the certificate store used for validating certs.
#
def certificate_store
return @certificate_store if @certificate_store.is_a?(OpenSSL::X509::Store)
@certificate_store = OpenSSL::X509::Store.new
@certificate_store.set_default_paths
@certificate_store.add_path("/etc/ssl/certs")
@certificate_store
end
#
# This connects to a host, and fetches its certificate and bundle
#
def certificate
return @certificate if @certificate.is_a?(OpenSSL::X509::Certificate)
s = nil
ctx = OpenSSL::SSL::SSLContext.new(:TLSv1_client)
retried = false
begin
Timeout::timeout(10) do
s = TCPSocket.open(uri.host, uri.port)
s = OpenSSL::SSL::SSLSocket.new(s, ctx)
s.sync_close = true
s.hostname = uri.host # SNI
s.connect
@certificate = s.peer_cert
self.bundle = s.peer_cert_chain
s.close
end
rescue OpenSSL::SSL::SSLError => err
unless retried
# retry with a different context
#
ctx = OpenSSL::SSL::SSLContext.new(:SSLv3_client)
retry
end
self.errors << verbose("*Caught #{err.class}* (#{err.to_s}) when connecting to #{uri.host}:#{uri.port}")
rescue StandardError, Timeout::Error => err
self.errors << verbose("*Caught #{err.class}* (#{err.to_s}) when connecting to #{uri.host}:#{uri.port}")
ensure
s.close if s.respond_to?(:close) and !s.closed?
end
return @certificate
end
#
# This performs the verification tests.
#
def verify
if self.tests.empty?
verbose "All tests have been disabled for #{self.domain}"
return true
elsif self.certificate.nil?
self.errors << verbose("Failed to fetch certificate for #{self.domain}")
return nil
else
return ![ verify_subject, verify_valid_from, verify_valid_to, verify_signature].any?{|r| false == r}
end
end
def verify_sslv3_disabled
unless self.tests.include?(:sslv3_disabled)
verbose "Skipping SSLv3 test for #{self.domain}"
return true
end
s = nil
begin
Timeout::timeout(10) do
s = TCPSocket.open(uri.host, uri.port)
s = OpenSSL::SSL::SSLSocket.new(s, OpenSSL::SSL::SSLContext.new(:SSLv3_client))
s.sync_close = true
s.connect
s.close
end
self.errors << verbose("*SSLv2 or SSLv3 enabled* on #{uri.host}:#{uri.port}")
return false
rescue OpenSSL::SSL::SSLError => err
#
# OK good :)
#
return true
rescue StandardError, Timeout::Error => err
self.errors << verbose("*Caught #{err.class}* (#{err.to_s}) when connecting to #{uri.host}:#{uri.port} using SSLv3")
ensure
s.close if s.respond_to?(:close) and !s.closed?
end
return false
end
def verify_subject
unless self.tests.include?(:subject)
verbose "Skipping subject verification for #{self.domain}"
return true
end
#
# Firstly check that the certificate is valid for the domain or one of its aliases.
#
if OpenSSL::SSL.verify_certificate_identity(self.certificate, self.domain)
verbose "The certificate subject is valid for #{self.domain}"
return true
else
self.errors << verbose("The certificate subject is *not valid* for this domain #{self.domain}.")
return false
end
end
def verify_valid_from
unless self.tests.include?(:valid_from)
verbose "Skipping certificate end date validation for #{self.domain}"
return true
end
#
# Check that the certificate is current
#
if self.certificate.not_before < Time.now
verbose "The certificate for #{self.domain} is valid from #{self.certificate.not_before}."
return true
else
self.errors << verbose("The certificate for #{self.domain} *is not valid yet*.")
return false
end
end
def verify_valid_to
unless self.tests.include?(:valid_to)
verbose "Skipping certificate start date validation for #{self.domain}"
return true
end
days_until_expiry = (self.certificate.not_after.to_i - Time.now.to_i)/(24.0*3600).floor.to_i
if days_until_expiry > 14
verbose "The certificate for #{self.domain} is valid until #{self.certificate.not_after}."
return true
else
if days_until_expiry > 0
self.errors << verbose("The certificate for #{self.domain} *will expire in #{days_until_expiry} days*.")
else
self.errors << verbose("The certificate for #{self.domain} *has expired*.")
end
return false
end
end
def verify_signature
unless self.tests.include?(:signature)
verbose "Skipping certificate signature validation for #{self.domain}"
return true
end
#
# Now check the signature.
#
# First see if we can verify it using our own private key, i.e. the
# certificate is self-signed.
#
if self.key.is_a?(OpenSSL::PKey) and self.certificate.verify(self.key)
verbose "Using a self-signed certificate for #{self.domain}."
return true
#
# Otherwise see if we can verify it using the certificate store,
# including any bundle that has been uploaded.
#
elsif self.certificate_store.is_a?(OpenSSL::X509::Store) and self.certificate_store.verify(self.certificate)
verbose "Certificate signed by #{self.certificate.issuer.to_s}"
return true
#
# If we can't verify -- raise an error.
#
else
self.errors << verbose("Certificate *signature does not verify* for #{self.domain} -- maybe a bundle is missing?")
return false
end
end
end
#
# The SSL-expiry test.
#
# This object is instantiated if the parser sees a line such as:
#
###
### https://foo.vm.bytemark.co.uk/ must run https with content 'page text' otherwise 'http fail'.
###
#
#
module Custodian
module ProtocolTest
class SSLCertificateTest < TestFactory
#
# Constructor
#
def initialize( line )
#
# Save the line
#
@line = line
#
# Save the host
#
@host = line.split( /\s+/)[0]
end
#
# Allow this test to be serialized.
#
def to_s
@line
end
#
# Run the test - this means making a TCP-connection to the
# given host and validating that the SSL-certificate is not
# expired.
#
# Because testing the SSL certificate is relatively heavy-weight
# and because they don't change often we only test in office-hours.
#
#
def run_test
hour = Time.now.hour
#
# If outside 10AM-5PM we don't alert.
#
if ( hour < 10 || hour > 17 )
puts( "Outside office hours - Not running SSL-Verification of #{@host}" )
return true
end
#
# Double-check we've got an SSL host
#
if ( ! @host =~ /^https:\/\// )
puts( "Not an SSL URL" )
return true
end
s = SSLCheck.new(@host)
result = s.verify
if true == result
puts( "SSL Verification succeeded for #{@host}" )
return true
elsif result.nil?
puts( "SSL Verification returned no result (timeout?) #{@host}" )
return true
else
puts( "SSL certificate check for #{@host} has failed." )
@error = "SSL certificate check for #{@host} failed: ";
@error += s.errors.join("\n")
return false
end
end
#
# If the test fails then report the error.
#
def error
@error
end
register_test_type "https"
end
end
end
|