aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTatsuya Kinoshita <tats@debian.org>2014-10-15 09:14:12 +0000
committerTatsuya Kinoshita <tats@debian.org>2014-10-15 09:14:12 +0000
commit1aace42d026c7df31c4762ef1095ce83450916fc (patch)
tree4e77f6facf174e40f431a489de30a371d147bbf0
parentForce ssl_verify_server on and disable SSLv2 support (diff)
downloadw3m-1aace42d026c7df31c4762ef1095ce83450916fc.tar.gz
w3m-1aace42d026c7df31c4762ef1095ce83450916fc.zip
Disable SSLv3 by default [CVE-2014-3566]
cf. https://blog.mozilla.org/security/2014/10/14/the-poodle-attack-and-the-end-of-ssl-3-0/
-rw-r--r--fm.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fm.h b/fm.h
index 9810c31..ddcd4fc 100644
--- a/fm.h
+++ b/fm.h
@@ -1144,7 +1144,7 @@ global int ssl_path_modified init(FALSE);
#endif /* defined(USE_SSL) &&
* defined(USE_SSL_VERIFY) */
#ifdef USE_SSL
-global char *ssl_forbid_method init("2");
+global char *ssl_forbid_method init("2, 3");
#endif
global int is_redisplay init(FALSE);