diff options
author | Kim Alvefur <zash@zash.se> | 2013-10-31 19:00:36 +0100 |
---|---|---|
committer | Kim Alvefur <zash@zash.se> | 2013-10-31 19:00:36 +0100 |
commit | f8c452ae45958054966cd3fa062e8efd9fad1f63 (patch) | |
tree | 33984340cf3057aa28b1a34f35a57716776b131a | |
parent | 6dc1bb826a8455ef260c7cd7a8c65e448bfdea94 (diff) | |
download | prosody-f8c452ae45958054966cd3fa062e8efd9fad1f63.tar.gz prosody-f8c452ae45958054966cd3fa062e8efd9fad1f63.zip |
certmanager: Disable SSLv3 by default
-rw-r--r-- | core/certmanager.lua | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua index 350fb837..e820c914 100644 --- a/core/certmanager.lua +++ b/core/certmanager.lua @@ -33,7 +33,7 @@ module "certmanager" 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", luasec_has_noticket and "no_ticket" or nil }; +local default_options = { "no_sslv2", "no_sslv3", 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 |