summaryrefslogtreecommitdiff
path: root/sshd_config.0
diff options
context:
space:
mode:
authorColin Watson <cjwatson@debian.org>2010-01-01 23:53:30 +0000
committerColin Watson <cjwatson@debian.org>2010-01-01 23:53:30 +0000
commitdf03186a4f9e0c2ece398b5c0571cb6263d7a752 (patch)
tree1aab079441dff9615274769b19f2d734ddf508dd /sshd_config.0
parent6ad6994c288662fca6949f42bf91fec2aff00bca (diff)
parent99b402ea4c8457b0a3cafff37f5b3410a8dc6476 (diff)
* New upstream release (closes: #536182). Yes, I know 5.3p1 has been out
for a while, but there's no GSSAPI patch available for it yet. - Change the default cipher order to prefer the AES CTR modes and the revised "arcfour256" mode to CBC mode ciphers that are susceptible to CPNI-957037 "Plaintext Recovery Attack Against SSH". - Add countermeasures to mitigate CPNI-957037-style attacks against the SSH protocol's use of CBC-mode ciphers. Upon detection of an invalid packet length or Message Authentication Code, ssh/sshd will continue reading up to the maximum supported packet length rather than immediately terminating the connection. This eliminates most of the known differences in behaviour that leaked information about the plaintext of injected data which formed the basis of this attack (closes: #506115, LP: #379329). - ForceCommand directive now accepts commandline arguments for the internal-sftp server (closes: #524423, LP: #362511). - Add AllowAgentForwarding to available Match keywords list (closes: #540623). - Make ssh(1) send the correct channel number for SSH2_MSG_CHANNEL_SUCCESS and SSH2_MSG_CHANNEL_FAILURE messages to avoid triggering 'Non-public channel' error messages on sshd(8) in openssh-5.1. - Avoid printing 'Non-public channel' warnings in sshd(8), since the ssh(1) has sent incorrect channel numbers since ~2004 (this reverts a behaviour introduced in openssh-5.1; closes: #496017). * Update to GSSAPI patch from http://www.sxw.org.uk/computing/patches/openssh-5.2p1-gsskex-all-20090726.patch, including cascading credentials support (LP: #416958).
Diffstat (limited to 'sshd_config.0')
-rw-r--r--sshd_config.021
1 files changed, 11 insertions, 10 deletions
diff --git a/sshd_config.0 b/sshd_config.0
index 15a6c9004..067f757de 100644
--- a/sshd_config.0
+++ b/sshd_config.0
@@ -122,9 +122,9 @@ DESCRIPTION
122 ``arcfour256'', ``arcfour'', ``blowfish-cbc'', and 122 ``arcfour256'', ``arcfour'', ``blowfish-cbc'', and
123 ``cast128-cbc''. The default is: 123 ``cast128-cbc''. The default is:
124 124
125 aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,arcfour128, 125 aes128-ctr,aes192-ctr,aes256-ctr,arcfour256,arcfour128,
126 arcfour256,arcfour,aes192-cbc,aes256-cbc,aes128-ctr, 126 aes128-cbc,3des-cbc,blowfish-cbc,cast128-cbc,aes192-cbc,
127 aes192-ctr,aes256-ctr 127 aes256-cbc,arcfour
128 128
129 ClientAliveCountMax 129 ClientAliveCountMax
130 Sets the number of client alive messages (see below) which may be 130 Sets the number of client alive messages (see below) which may be
@@ -337,13 +337,14 @@ DESCRIPTION
337 example, ``192.0.2.0/33'' and ``192.0.2.0/8'' respectively. 337 example, ``192.0.2.0/33'' and ``192.0.2.0/8'' respectively.
338 338
339 Only a subset of keywords may be used on the lines following a 339 Only a subset of keywords may be used on the lines following a
340 Match keyword. Available keywords are AllowTcpForwarding, 340 Match keyword. Available keywords are AllowAgentForwarding,
341 Banner, ChrootDirectory, ForceCommand, GatewayPorts, 341 AllowTcpForwarding, Banner, ChrootDirectory, ForceCommand,
342 GSSAPIAuthentication, HostbasedAuthentication, 342 GatewayPorts, GSSAPIAuthentication, HostbasedAuthentication,
343 KbdInteractiveAuthentication, KerberosAuthentication, 343 KbdInteractiveAuthentication, KerberosAuthentication,
344 MaxAuthTries, MaxSessions, PasswordAuthentication, PermitOpen, 344 MaxAuthTries, MaxSessions, PasswordAuthentication,
345 PermitRootLogin, RhostsRSAAuthentication, RSAAuthentication, 345 PermitEmptyPasswords, PermitOpen, PermitRootLogin,
346 X11DisplayOffset, X11Forwarding, and X11UseLocalHost. 346 RhostsRSAAuthentication, RSAAuthentication, X11DisplayOffset,
347 X11Forwarding and X11UseLocalHost.
347 348
348 MaxAuthTries 349 MaxAuthTries
349 Specifies the maximum number of authentication attempts permitted 350 Specifies the maximum number of authentication attempts permitted
@@ -627,4 +628,4 @@ AUTHORS
627 versions 1.5 and 2.0. Niels Provos and Markus Friedl contributed support 628 versions 1.5 and 2.0. Niels Provos and Markus Friedl contributed support
628 for privilege separation. 629 for privilege separation.
629 630
630OpenBSD 4.4 July 2, 2008 10 631OpenBSD 4.5 February 22, 2009 10