# HG changeset patch # User Pascal Bellard # Date 1452792794 -3600 # Node ID f9d32919a26fd9cf2716059b9c8c79f6a34a1ec2 # Parent c7a23f0fad689fed7a7548b04857467b3c0622d7 openssh: CVE-2016-0777 and CVE-2016-0778 diff -r c7a23f0fad68 -r f9d32919a26f openssh-pam/receipt --- a/openssh-pam/receipt Wed Jan 13 23:15:10 2016 +0100 +++ b/openssh-pam/receipt Thu Jan 14 18:33:14 2016 +0100 @@ -48,6 +48,9 @@ sed -i 's/.*UsePAM.*/UsePAM yes/' $fs/etc/ssh/sshd_config sed -i 's|/usr/libexec/sftp-server|/usr/sbin/sftp-server|' \ $fs/etc/ssh/sshd_config + + # client bug CVE-2016-0777 and CVE-2016-0778 + echo -e '\nHost *\nUseRoaming no' >> $fs/etc/ssh/ssh_config } post_install() diff -r c7a23f0fad68 -r f9d32919a26f openssh/receipt --- a/openssh/receipt Wed Jan 13 23:15:10 2016 +0100 +++ b/openssh/receipt Thu Jan 14 18:33:14 2016 +0100 @@ -47,6 +47,9 @@ cp $stuff/openssh $fs/etc/init.d sed -i 's|/usr/libexec/sftp-server|/usr/sbin/sftp-server|' \ $fs/etc/ssh/sshd_config + + # client bug CVE-2016-0777 and CVE-2016-0778 + echo -e '\nHost *\nUseRoaming no' >> $fs/etc/ssh/ssh_config } post_install()