diff options
author | 2001-09-17 21:09:47 +0000 | |
---|---|---|
committer | 2001-09-17 21:09:47 +0000 | |
commit | 7bc9a35b9e00e529f62d9db22a9130385c113b59 (patch) | |
tree | 7a0dcfb3531ba6c7f3d6fb39ff71eb149247a46d | |
parent | don't send fake dummy packets on CR (\r) (diff) | |
download | wireguard-openbsd-7bc9a35b9e00e529f62d9db22a9130385c113b59.tar.xz wireguard-openbsd-7bc9a35b9e00e529f62d9db22a9130385c113b59.zip |
more versions suffering the SSH_BUG_DEBUG bug;
3.0.x reported by dbutts@maddog.storability.com
-rw-r--r-- | usr.bin/ssh/compat.c | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/usr.bin/ssh/compat.c b/usr.bin/ssh/compat.c index 7ac4c32a93d..7fc9db2a4cb 100644 --- a/usr.bin/ssh/compat.c +++ b/usr.bin/ssh/compat.c @@ -23,7 +23,7 @@ */ #include "includes.h" -RCSID("$OpenBSD: compat.c,v 1.51 2001/06/25 08:25:37 markus Exp $"); +RCSID("$OpenBSD: compat.c,v 1.52 2001/09/17 21:09:47 markus Exp $"); #include <regex.h> @@ -97,9 +97,11 @@ compat_datafellows(const char *version) SSH_BUG_PKAUTH|SSH_BUG_PKOK| SSH_BUG_RSASIGMD5|SSH_BUG_OPENFAILURE| SSH_BUG_DERIVEKEY }, - { "^2\\.[23]\\.0", SSH_BUG_HMAC|SSH_BUG_RSASIGMD5 }, - { "^2\\.3\\.", SSH_BUG_RSASIGMD5 }, - { "^2\\.[2-9]\\.", 0 }, + { "^2\\.[23]\\.0", SSH_BUG_HMAC|SSH_BUG_DEBUG| + SSH_BUG_RSASIGMD5 }, + { "^2\\.3\\.", SSH_BUG_DEBUG|SSH_BUG_RSASIGMD5 }, + { "^2\\.[2-9]\\.", SSH_BUG_DEBUG }, + { "^3\\.0\\.", SSH_BUG_DEBUG }, { "^2\\.4$", SSH_OLD_SESSIONID }, /* Van Dyke */ { "^3\\.0 SecureCRT", SSH_OLD_SESSIONID }, { "^1\\.7 SecureFX", SSH_OLD_SESSIONID }, |