# HG changeset patch # User Matthew Wild # Date 1384222381 0 # Node ID e6fed1d80116a62cd6eec94c7111552548dffddc # Parent 9586979058b8a42d99eaa9595a57312a3d198f1f Back out 1b0ac7950129, as SSLv3 appears to still be in moderate use on the network. Also, although obsolete, SSLv3 isn't documented to have any weaknesses that TLS 1.0 (the most common version used today) doesn't also have. Get your act together clients! diff -r 9586979058b8 -r e6fed1d80116 core/certmanager.lua --- a/core/certmanager.lua Sun Nov 10 18:46:48 2013 +0000 +++ b/core/certmanager.lua Tue Nov 12 02:13:01 2013 +0000 @@ -33,7 +33,7 @@ local default_ssl_config = configmanager.get("*", "ssl"); local default_capath = "/etc/ssl/certs"; local default_verify = (ssl and ssl.x509 and { "peer", "client_once", }) or "none"; -local default_options = { "no_sslv2", "no_sslv3", "cipher_server_preference", luasec_has_noticket and "no_ticket" or nil }; +local default_options = { "no_sslv2", "cipher_server_preference", luasec_has_noticket and "no_ticket" or nil }; local default_verifyext = { "lsec_continue", "lsec_ignore_purpose" }; if ssl and not luasec_has_verifyext and ssl.x509 then