2021-01-27 10:26:53 +01:00
|
|
|
/* $OpenBSD: compat.c,v 1.117 2021/01/27 09:26:54 djm Exp $ */
|
1999-11-25 01:54:57 +01:00
|
|
|
/*
|
2002-03-07 02:59:02 +01:00
|
|
|
* Copyright (c) 1999, 2000, 2001, 2002 Markus Friedl. All rights reserved.
|
1999-11-25 01:54:57 +01:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
|
|
|
|
* IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
|
|
|
|
* OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
|
|
|
|
* IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
|
|
|
|
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
|
|
|
|
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
|
|
|
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
|
1999-10-27 05:42:43 +02:00
|
|
|
#include "includes.h"
|
|
|
|
|
2006-08-05 04:39:39 +02:00
|
|
|
#include <sys/types.h>
|
|
|
|
|
2006-08-05 03:34:19 +02:00
|
|
|
#include <stdlib.h>
|
2006-07-24 06:13:33 +02:00
|
|
|
#include <string.h>
|
2006-08-05 04:39:39 +02:00
|
|
|
#include <stdarg.h>
|
2006-07-24 06:13:33 +02:00
|
|
|
|
2006-08-05 04:39:39 +02:00
|
|
|
#include "xmalloc.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
#include "packet.h"
|
|
|
|
#include "compat.h"
|
|
|
|
#include "log.h"
|
2001-12-06 19:06:05 +01:00
|
|
|
#include "match.h"
|
2017-02-04 00:01:19 +01:00
|
|
|
#include "kex.h"
|
2001-01-22 06:34:40 +01:00
|
|
|
|
2021-01-27 10:26:53 +01:00
|
|
|
/* determine bug flags from SSH protocol banner */
|
|
|
|
void
|
|
|
|
compat_banner(struct ssh *ssh, const char *version)
|
2000-04-04 06:38:59 +02:00
|
|
|
{
|
2001-12-06 19:06:05 +01:00
|
|
|
int i;
|
2000-10-14 07:23:11 +02:00
|
|
|
static struct {
|
|
|
|
char *pat;
|
2000-05-09 03:02:59 +02:00
|
|
|
int bugs;
|
|
|
|
} check[] = {
|
2002-03-26 04:26:24 +01:00
|
|
|
{ "OpenSSH_2.*,"
|
|
|
|
"OpenSSH_3.0*,"
|
2018-07-03 13:39:54 +02:00
|
|
|
"OpenSSH_3.1*", SSH_BUG_EXTEOF|SSH_OLD_FORWARD_ADDR|
|
|
|
|
SSH_BUG_SIGTYPE},
|
|
|
|
{ "OpenSSH_3.*", SSH_OLD_FORWARD_ADDR|SSH_BUG_SIGTYPE },
|
|
|
|
{ "Sun_SSH_1.0*", SSH_BUG_NOREKEY|SSH_BUG_EXTEOF|
|
|
|
|
SSH_BUG_SIGTYPE},
|
2018-01-23 06:27:21 +01:00
|
|
|
{ "OpenSSH_2*,"
|
|
|
|
"OpenSSH_3*,"
|
2018-07-03 13:39:54 +02:00
|
|
|
"OpenSSH_4*", SSH_BUG_SIGTYPE },
|
|
|
|
{ "OpenSSH_5*", SSH_NEW_OPENSSH|SSH_BUG_DYNAMIC_RPORT|
|
|
|
|
SSH_BUG_SIGTYPE},
|
|
|
|
{ "OpenSSH_6.6.1*", SSH_NEW_OPENSSH|SSH_BUG_SIGTYPE},
|
2014-04-20 05:25:30 +02:00
|
|
|
{ "OpenSSH_6.5*,"
|
2018-07-03 13:39:54 +02:00
|
|
|
"OpenSSH_6.6*", SSH_NEW_OPENSSH|SSH_BUG_CURVE25519PAD|
|
|
|
|
SSH_BUG_SIGTYPE},
|
|
|
|
{ "OpenSSH_7.0*,"
|
|
|
|
"OpenSSH_7.1*,"
|
|
|
|
"OpenSSH_7.2*,"
|
|
|
|
"OpenSSH_7.3*,"
|
|
|
|
"OpenSSH_7.4*,"
|
|
|
|
"OpenSSH_7.5*,"
|
2018-07-03 13:42:12 +02:00
|
|
|
"OpenSSH_7.6*,"
|
|
|
|
"OpenSSH_7.7*", SSH_NEW_OPENSSH|SSH_BUG_SIGTYPE},
|
2008-11-03 09:20:10 +01:00
|
|
|
{ "OpenSSH*", SSH_NEW_OPENSSH },
|
2001-12-06 19:06:05 +01:00
|
|
|
{ "*MindTerm*", 0 },
|
|
|
|
{ "3.0.*", SSH_BUG_DEBUG },
|
|
|
|
{ "3.0 SecureCRT*", SSH_OLD_SESSIONID },
|
|
|
|
{ "1.7 SecureFX*", SSH_OLD_SESSIONID },
|
|
|
|
{ "1.2.18*,"
|
|
|
|
"1.2.19*,"
|
|
|
|
"1.2.20*,"
|
|
|
|
"1.2.21*,"
|
2003-09-02 14:52:00 +02:00
|
|
|
"1.2.22*", SSH_BUG_IGNOREMSG },
|
2002-04-10 18:22:09 +02:00
|
|
|
{ "1.3.2*", /* F-Secure */
|
2003-09-02 14:52:00 +02:00
|
|
|
SSH_BUG_IGNOREMSG },
|
2015-07-29 01:20:42 +02:00
|
|
|
{ "Cisco-1.*", SSH_BUG_DHGEX_LARGE|
|
|
|
|
SSH_BUG_HOSTKEYS },
|
2001-12-06 19:06:05 +01:00
|
|
|
{ "*SSH Compatible Server*", /* Netscreen */
|
2001-03-10 18:22:20 +01:00
|
|
|
SSH_BUG_PASSWORDPAD },
|
2001-12-21 04:45:46 +01:00
|
|
|
{ "*OSU_0*,"
|
2001-12-06 19:06:05 +01:00
|
|
|
"OSU_1.0*,"
|
|
|
|
"OSU_1.1*,"
|
|
|
|
"OSU_1.2*,"
|
|
|
|
"OSU_1.3*,"
|
|
|
|
"OSU_1.4*,"
|
|
|
|
"OSU_1.5alpha1*,"
|
|
|
|
"OSU_1.5alpha2*,"
|
|
|
|
"OSU_1.5alpha3*", SSH_BUG_PASSWORDPAD },
|
|
|
|
{ "*SSH_Version_Mapper*",
|
2001-03-19 12:36:20 +01:00
|
|
|
SSH_BUG_SCANNER },
|
2015-07-13 06:57:14 +02:00
|
|
|
{ "PuTTY_Local:*," /* dev versions < Sep 2014 */
|
|
|
|
"PuTTY-Release-0.5*," /* 0.50-0.57, DH-GEX in >=0.52 */
|
2015-05-06 06:07:18 +02:00
|
|
|
"PuTTY_Release_0.5*," /* 0.58-0.59 */
|
|
|
|
"PuTTY_Release_0.60*,"
|
|
|
|
"PuTTY_Release_0.61*,"
|
|
|
|
"PuTTY_Release_0.62*,"
|
|
|
|
"PuTTY_Release_0.63*,"
|
|
|
|
"PuTTY_Release_0.64*",
|
|
|
|
SSH_OLD_DHGEX },
|
2015-08-20 01:21:42 +02:00
|
|
|
{ "FuTTY*", SSH_OLD_DHGEX }, /* Putty Fork */
|
2002-09-30 03:59:21 +02:00
|
|
|
{ "Probe-*",
|
|
|
|
SSH_BUG_PROBE },
|
2015-04-10 07:16:50 +02:00
|
|
|
{ "TeraTerm SSH*,"
|
|
|
|
"TTSSH/1.5.*,"
|
|
|
|
"TTSSH/2.1*,"
|
|
|
|
"TTSSH/2.2*,"
|
|
|
|
"TTSSH/2.3*,"
|
|
|
|
"TTSSH/2.4*,"
|
|
|
|
"TTSSH/2.5*,"
|
|
|
|
"TTSSH/2.6*,"
|
|
|
|
"TTSSH/2.70*,"
|
|
|
|
"TTSSH/2.71*,"
|
|
|
|
"TTSSH/2.72*", SSH_BUG_HOSTKEYS },
|
2015-08-20 01:21:42 +02:00
|
|
|
{ "WinSCP_release_4*,"
|
|
|
|
"WinSCP_release_5.0*,"
|
2017-07-25 11:22:25 +02:00
|
|
|
"WinSCP_release_5.1,"
|
|
|
|
"WinSCP_release_5.1.*,"
|
|
|
|
"WinSCP_release_5.5,"
|
|
|
|
"WinSCP_release_5.5.*,"
|
|
|
|
"WinSCP_release_5.6,"
|
|
|
|
"WinSCP_release_5.6.*,"
|
2015-08-20 01:21:42 +02:00
|
|
|
"WinSCP_release_5.7,"
|
|
|
|
"WinSCP_release_5.7.1,"
|
|
|
|
"WinSCP_release_5.7.2,"
|
|
|
|
"WinSCP_release_5.7.3,"
|
|
|
|
"WinSCP_release_5.7.4",
|
|
|
|
SSH_OLD_DHGEX },
|
2018-02-16 05:43:11 +01:00
|
|
|
{ "ConfD-*",
|
|
|
|
SSH_BUG_UTF8TTYMODE },
|
2018-04-17 00:50:44 +02:00
|
|
|
{ "Twisted_*", 0 },
|
|
|
|
{ "Twisted*", SSH_BUG_DEBUG },
|
2000-10-16 03:14:42 +02:00
|
|
|
{ NULL, 0 }
|
2000-04-04 06:38:59 +02:00
|
|
|
};
|
2001-12-06 19:06:05 +01:00
|
|
|
|
2000-08-29 02:33:50 +02:00
|
|
|
/* process table, return first match */
|
2021-01-27 10:26:53 +01:00
|
|
|
ssh->compat = 0;
|
2000-10-14 07:23:11 +02:00
|
|
|
for (i = 0; check[i].pat; i++) {
|
2015-05-04 08:10:48 +02:00
|
|
|
if (match_pattern_list(version, check[i].pat, 0) == 1) {
|
2021-01-27 10:26:53 +01:00
|
|
|
debug_f("match: %s pat %s compat 0x%08x",
|
2015-01-19 21:20:20 +01:00
|
|
|
version, check[i].pat, check[i].bugs);
|
2021-01-27 10:26:53 +01:00
|
|
|
ssh->compat = check[i].bugs;
|
|
|
|
return;
|
2000-04-04 06:38:59 +02:00
|
|
|
}
|
|
|
|
}
|
2021-01-27 10:26:53 +01:00
|
|
|
debug_f("no match: %s", version);
|
2000-04-04 06:38:59 +02:00
|
|
|
}
|
2000-04-12 12:17:38 +02:00
|
|
|
|
2013-12-31 02:25:40 +01:00
|
|
|
char *
|
2021-01-27 10:26:53 +01:00
|
|
|
compat_cipher_proposal(struct ssh *ssh, char *cipher_prop)
|
2013-12-31 02:25:40 +01:00
|
|
|
{
|
2021-01-27 10:26:53 +01:00
|
|
|
if (!(ssh->compat & SSH_BUG_BIGENDIANAES))
|
2013-12-31 02:25:40 +01:00
|
|
|
return cipher_prop;
|
2020-10-18 13:32:01 +02:00
|
|
|
debug2_f("original cipher proposal: %s", cipher_prop);
|
2020-07-06 01:59:45 +02:00
|
|
|
if ((cipher_prop = match_filter_denylist(cipher_prop, "aes*")) == NULL)
|
|
|
|
fatal("match_filter_denylist failed");
|
2020-10-18 13:32:01 +02:00
|
|
|
debug2_f("compat cipher proposal: %s", cipher_prop);
|
2013-12-31 02:25:40 +01:00
|
|
|
if (*cipher_prop == '\0')
|
|
|
|
fatal("No supported ciphers found");
|
|
|
|
return cipher_prop;
|
|
|
|
}
|
|
|
|
|
|
|
|
char *
|
2021-01-27 10:26:53 +01:00
|
|
|
compat_pkalg_proposal(struct ssh *ssh, char *pkalg_prop)
|
2013-12-31 02:25:40 +01:00
|
|
|
{
|
2021-01-27 10:26:53 +01:00
|
|
|
if (!(ssh->compat & SSH_BUG_RSASIGMD5))
|
2013-12-31 02:25:40 +01:00
|
|
|
return pkalg_prop;
|
2020-10-18 13:32:01 +02:00
|
|
|
debug2_f("original public key proposal: %s", pkalg_prop);
|
2020-07-06 01:59:45 +02:00
|
|
|
if ((pkalg_prop = match_filter_denylist(pkalg_prop, "ssh-rsa")) == NULL)
|
|
|
|
fatal("match_filter_denylist failed");
|
2020-10-18 13:32:01 +02:00
|
|
|
debug2_f("compat public key proposal: %s", pkalg_prop);
|
2013-12-31 02:25:40 +01:00
|
|
|
if (*pkalg_prop == '\0')
|
|
|
|
fatal("No supported PK algorithms found");
|
|
|
|
return pkalg_prop;
|
|
|
|
}
|
|
|
|
|
2014-04-20 05:25:30 +02:00
|
|
|
char *
|
2021-01-27 10:26:53 +01:00
|
|
|
compat_kex_proposal(struct ssh *ssh, char *p)
|
2014-04-20 05:25:30 +02:00
|
|
|
{
|
2021-01-27 10:26:53 +01:00
|
|
|
if ((ssh->compat & (SSH_BUG_CURVE25519PAD|SSH_OLD_DHGEX)) == 0)
|
2018-08-13 04:41:05 +02:00
|
|
|
return p;
|
2020-10-18 13:32:01 +02:00
|
|
|
debug2_f("original KEX proposal: %s", p);
|
2021-01-27 10:26:53 +01:00
|
|
|
if ((ssh->compat & SSH_BUG_CURVE25519PAD) != 0)
|
2020-07-06 01:59:45 +02:00
|
|
|
if ((p = match_filter_denylist(p,
|
2017-02-04 00:01:19 +01:00
|
|
|
"curve25519-sha256@libssh.org")) == NULL)
|
2020-07-06 01:59:45 +02:00
|
|
|
fatal("match_filter_denylist failed");
|
2021-01-27 10:26:53 +01:00
|
|
|
if ((ssh->compat & SSH_OLD_DHGEX) != 0) {
|
2020-07-06 01:59:45 +02:00
|
|
|
if ((p = match_filter_denylist(p,
|
2017-02-04 00:01:19 +01:00
|
|
|
"diffie-hellman-group-exchange-sha256,"
|
|
|
|
"diffie-hellman-group-exchange-sha1")) == NULL)
|
2020-07-06 01:59:45 +02:00
|
|
|
fatal("match_filter_denylist failed");
|
2015-04-13 04:04:08 +02:00
|
|
|
}
|
2020-10-18 13:32:01 +02:00
|
|
|
debug2_f("compat KEX proposal: %s", p);
|
2018-08-13 04:41:05 +02:00
|
|
|
if (*p == '\0')
|
2014-04-20 05:25:30 +02:00
|
|
|
fatal("No supported key exchange algorithms found");
|
2018-08-13 04:41:05 +02:00
|
|
|
return p;
|
2014-04-20 05:25:30 +02:00
|
|
|
}
|
|
|
|
|