diff options
author | Matthew Wild <mwild1@gmail.com> | 2014-10-14 18:55:08 +0100 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2014-10-14 18:55:08 +0100 |
commit | c5d03454532da598dbb2cb7d2646a6a9cfb4a79f (patch) | |
tree | e267f4722b8414541b27c335ae0816b0a2d3e7b5 /core | |
parent | 4a4ec58c8d72ad6b9670ba697b4a98d35e21e2f6 (diff) | |
download | prosody-c5d03454532da598dbb2cb7d2646a6a9cfb4a79f.tar.gz prosody-c5d03454532da598dbb2cb7d2646a6a9cfb4a79f.zip |
certmanager, net.http: Disable SSLv3 by default
Diffstat (limited to 'core')
-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 d6784a96..624bd841 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", "cipher_server_preference", luasec_has_noticket and "no_ticket" or nil }; +local default_options = { "no_sslv2", "no_sslv3", "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 |