aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorLars Ingebrigtsen2018-06-24 22:57:27 +0200
committerLars Ingebrigtsen2018-06-24 22:57:27 +0200
commit5a285a4db97d88cfd7a2320e33542a0afe695665 (patch)
tree11de5284a3d79f070db4ab797b995ae74a737448 /doc
parentfea8c7d181babe6de7daedfef07b291f8dda2322 (diff)
downloademacs-5a285a4db97d88cfd7a2320e33542a0afe695665.tar.gz
emacs-5a285a4db97d88cfd7a2320e33542a0afe695665.zip
Make more TLS checks trigger on the default `medium' level
* doc/emacs/misc.texi (Network Security): Update the doc to say what's on the different levels. * lisp/net/nsm.el (nsm-protocol-check--intermediary-sha1): Check intermediary certificates for SHA1. (nsm-protocol-check--3des): Check for 3DES ciphers. (network-security-protocol-checks): Put most of the checks on `medium'.
Diffstat (limited to 'doc')
-rw-r--r--doc/emacs/misc.texi37
1 files changed, 24 insertions, 13 deletions
diff --git a/doc/emacs/misc.texi b/doc/emacs/misc.texi
index 177cc8fa469..78f28ccfad9 100644
--- a/doc/emacs/misc.texi
+++ b/doc/emacs/misc.texi
@@ -352,19 +352,6 @@ over these connections. Similarly, if you're sending email via
352connection to be encrypted. If the connection isn't encrypted, 352connection to be encrypted. If the connection isn't encrypted,
353@acronym{NSM} will warn you. 353@acronym{NSM} will warn you.
354 354
355@end table
356
357If @code{network-security-level} is @code{high}, the following checks
358will be made, in addition to the above:
359
360@table @asis
361@item a validated certificate changes the public key
362Servers change their keys occasionally, and that is normally nothing
363to be concerned about. However, if you are worried that your network
364connections are being hijacked by agencies who have access to pliable
365Certificate Authorities which issue new certificates for third-party
366services, you may want to keep track of these changes.
367
368@item Diffie-Hellman low prime bits 355@item Diffie-Hellman low prime bits
369When doing the public key exchange, the number of prime bits 356When doing the public key exchange, the number of prime bits
370should be high to ensure that the channel can't be eavesdropped on by 357should be high to ensure that the channel can't be eavesdropped on by
@@ -374,10 +361,34 @@ third parties. If this number is too low, you will be warned.
374The @acronym{RC4} stream cipher is believed to be of low quality and 361The @acronym{RC4} stream cipher is believed to be of low quality and
375may allow eavesdropping by third parties. 362may allow eavesdropping by third parties.
376 363
364@item @acronym{SHA1} in the host certificate or in intermediary certificates
365It is believed that if an intermediary certificate uses
366the @acronym{SHA1} hashing algorithm, then third parties can issue
367certificates pretending to be that issuing instance. These
368connections are therefore vulnerable to man-in-the-middle attacks.
369
377@item @acronym{SSL1}, @acronym{SSL2} and @acronym{SSL3} 370@item @acronym{SSL1}, @acronym{SSL2} and @acronym{SSL3}
378The protocols older than @acronym{TLS1.0} are believed to be 371The protocols older than @acronym{TLS1.0} are believed to be
379vulnerable to a variety of attacks, and you may want to avoid using 372vulnerable to a variety of attacks, and you may want to avoid using
380these if what you're doing requires higher security. 373these if what you're doing requires higher security.
374
375@end table
376
377If @code{network-security-level} is @code{high}, the following checks
378will be made, in addition to the above:
379
380@table @asis
381@item @acronym{3DES} cipther
382The @acronym{RC4} stream cipher is believed by some to be of low
383quality and may allow eavesdropping by third parties.
384
385@item a validated certificate changes the public key
386Servers change their keys occasionally, and that is normally nothing
387to be concerned about. However, if you are worried that your network
388connections are being hijacked by agencies who have access to pliable
389Certificate Authorities which issue new certificates for third-party
390services, you may want to keep track of these changes.
391
381@end table 392@end table
382 393
383Finally, if @code{network-security-level} is @code{paranoid}, you will 394Finally, if @code{network-security-level} is @code{paranoid}, you will