summaryrefslogtreecommitdiff
path: root/compat.c
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2001-03-19 22:36:20 +1100
committerDamien Miller <djm@mindrot.org>2001-03-19 22:36:20 +1100
commit27dbe6f37e675bda22d99646e236eac1d18d36ac (patch)
tree80c5813d2cd6d7684f3dabbf4b03e636b1495f61 /compat.c
parentcafff1910541b1704e80b3cb16f6926135f23ea6 (diff)
- deraadt@cvs.openbsd.org 2001/03/18 23:30:55
[compat.c compat.h sshd.c] specifically version match on ssh scanners. do not log scan information to the console
Diffstat (limited to 'compat.c')
-rw-r--r--compat.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/compat.c b/compat.c
index 9d23f9a03..4fb2b441a 100644
--- a/compat.c
+++ b/compat.c
@@ -23,7 +23,7 @@
23 */ 23 */
24 24
25#include "includes.h" 25#include "includes.h"
26RCSID("$OpenBSD: compat.c,v 1.38 2001/03/10 15:31:00 deraadt Exp $"); 26RCSID("$OpenBSD: compat.c,v 1.39 2001/03/18 23:30:55 deraadt Exp $");
27 27
28#ifdef HAVE_LIBPCRE 28#ifdef HAVE_LIBPCRE
29# include <pcreposix.h> 29# include <pcreposix.h>
@@ -97,6 +97,8 @@ compat_datafellows(const char *version)
97 { "^OSU_1\\.[0-4]", SSH_BUG_PASSWORDPAD }, 97 { "^OSU_1\\.[0-4]", SSH_BUG_PASSWORDPAD },
98 { "^OSU_1\\.5alpha[1-3]", 98 { "^OSU_1\\.5alpha[1-3]",
99 SSH_BUG_PASSWORDPAD }, 99 SSH_BUG_PASSWORDPAD },
100 { "^SSH_Version_Mapper",
101 SSH_BUG_SCANNER },
100 { NULL, 0 } 102 { NULL, 0 }
101 }; 103 };
102 /* process table, return first match */ 104 /* process table, return first match */