mirror of git://anongit.mindrot.org/openssh.git
- dtucker@cvs.openbsd.org 2008/07/01 07:24:22
[sshconnect.c sshd.c] Send CR LF during protocol banner exchanges, but only for Protocol 2 only, in order to comply with RFC 4253. bz #1443, ok djm@
This commit is contained in:
parent
068e01f53f
commit
d7bdc0c8e8
|
@ -17,6 +17,10 @@
|
|||
[sshconnect.c]
|
||||
Check ExitOnForwardFailure if forwardings are disabled due to a failed
|
||||
host key check. ok djm@
|
||||
- dtucker@cvs.openbsd.org 2008/07/01 07:24:22
|
||||
[sshconnect.c sshd.c]
|
||||
Send CR LF during protocol banner exchanges, but only for Protocol 2 only,
|
||||
in order to comply with RFC 4253. bz #1443, ok djm@
|
||||
|
||||
20080630
|
||||
- (djm) OpenBSD CVS Sync
|
||||
|
@ -4500,4 +4504,4 @@
|
|||
OpenServer 6 and add osr5bigcrypt support so when someone migrates
|
||||
passwords between UnixWare and OpenServer they will still work. OK dtucker@
|
||||
|
||||
$Id: ChangeLog,v 1.5043 2008/07/02 12:33:55 dtucker Exp $
|
||||
$Id: ChangeLog,v 1.5044 2008/07/02 12:34:30 dtucker Exp $
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: sshconnect.c,v 1.210 2008/07/01 07:20:52 dtucker Exp $ */
|
||||
/* $OpenBSD: sshconnect.c,v 1.211 2008/07/01 07:24:22 dtucker Exp $ */
|
||||
/*
|
||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||
|
@ -537,10 +537,10 @@ ssh_exchange_identification(int timeout_ms)
|
|||
(options.protocol & SSH_PROTO_2) ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
|
||||
remote_major);
|
||||
/* Send our own protocol version identification. */
|
||||
snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n",
|
||||
snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s%s",
|
||||
compat20 ? PROTOCOL_MAJOR_2 : PROTOCOL_MAJOR_1,
|
||||
compat20 ? PROTOCOL_MINOR_2 : minor1,
|
||||
SSH_VERSION);
|
||||
SSH_VERSION, compat20 ? "\r\n" : "\n");
|
||||
if (atomicio(vwrite, connection_out, buf, strlen(buf)) != strlen(buf))
|
||||
fatal("write: %.100s", strerror(errno));
|
||||
client_version_string = xstrdup(buf);
|
||||
|
|
8
sshd.c
8
sshd.c
|
@ -1,4 +1,4 @@
|
|||
/* $OpenBSD: sshd.c,v 1.362 2008/06/14 17:07:11 dtucker Exp $ */
|
||||
/* $OpenBSD: sshd.c,v 1.363 2008/07/01 07:24:22 dtucker Exp $ */
|
||||
/*
|
||||
* Author: Tatu Ylonen <ylo@cs.hut.fi>
|
||||
* Copyright (c) 1995 Tatu Ylonen <ylo@cs.hut.fi>, Espoo, Finland
|
||||
|
@ -399,7 +399,7 @@ sshd_exchange_identification(int sock_in, int sock_out)
|
|||
int mismatch;
|
||||
int remote_major, remote_minor;
|
||||
int major, minor;
|
||||
char *s;
|
||||
char *s, *newline = "\n";
|
||||
char buf[256]; /* Must not be larger than remote_version. */
|
||||
char remote_version[256]; /* Must be at least as big as buf. */
|
||||
|
||||
|
@ -410,11 +410,13 @@ sshd_exchange_identification(int sock_in, int sock_out)
|
|||
} else if (options.protocol & SSH_PROTO_2) {
|
||||
major = PROTOCOL_MAJOR_2;
|
||||
minor = PROTOCOL_MINOR_2;
|
||||
newline = "\r\n";
|
||||
} else {
|
||||
major = PROTOCOL_MAJOR_1;
|
||||
minor = PROTOCOL_MINOR_1;
|
||||
}
|
||||
snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s\n", major, minor, SSH_VERSION);
|
||||
snprintf(buf, sizeof buf, "SSH-%d.%d-%.100s%s", major, minor,
|
||||
SSH_VERSION, newline);
|
||||
server_version_string = xstrdup(buf);
|
||||
|
||||
/* Send our protocol version identification. */
|
||||
|
|
Loading…
Reference in New Issue