mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00:00
gnu: w3m: Enable SSL, disable broken protocols and ciphers.
Fixes <http://bugs.gnu.org/16791>. * gnu/packages/patches/w3m-force-ssl_verify_server-on.patch: New file. * gnu/packages/patches/w3m-disable-sslv2-and-sslv3.patch: New file. * gnu/packages/patches/w3m-disable-weak-ciphers.patch: New file. * gnu/packages/w3m.scm (w3m)[source]: Add patches. * gnu-system.am (dist_patch_DATA): Add the new files.
This commit is contained in:
parent
e6352001c4
commit
62339e2d49
5 changed files with 79 additions and 1 deletions
24
gnu/packages/patches/w3m-force-ssl_verify_server-on.patch
Normal file
24
gnu/packages/patches/w3m-force-ssl_verify_server-on.patch
Normal file
|
@ -0,0 +1,24 @@
|
|||
Subject: Force ssl_verify_server on.
|
||||
|
||||
By default, SSL/TLS certificates are not verified. This enables the
|
||||
verification.
|
||||
---
|
||||
fm.h | 2 +-
|
||||
1 file changed, 1 insertion(+), 1 deletion(-)
|
||||
|
||||
diff --git a/fm.h b/fm.h
|
||||
index 8378939..320906c 100644
|
||||
--- a/fm.h
|
||||
+++ b/fm.h
|
||||
@@ -1135,7 +1135,7 @@ global int view_unseenobject init(TRUE);
|
||||
#endif
|
||||
|
||||
#if defined(USE_SSL) && defined(USE_SSL_VERIFY)
|
||||
-global int ssl_verify_server init(FALSE);
|
||||
+global int ssl_verify_server init(TRUE);
|
||||
global char *ssl_cert_file init(NULL);
|
||||
global char *ssl_key_file init(NULL);
|
||||
global char *ssl_ca_path init(NULL);
|
||||
--
|
||||
2.6.4
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue