# $Id: sshd-drop_brute_force.diff,v 1.3 2008/01/12 18:50:14 jcs Exp $ # # treat libssh-* clients as probes and drop them right away after connection # to fend off annoying brute force scans # # by joshua stein # Index: compat.c =================================================================== RCS file: /cvs/src/usr.bin/ssh/compat.c,v retrieving revision 1.77 diff -u -r1.77 compat.c --- compat.c 12 Dec 2006 03:58:42 -0000 1.77 +++ compat.c 12 Jan 2008 18:49:52 -0000 @@ -158,6 +158,8 @@ SSH_BUG_SCANNER }, { "Probe-*", SSH_BUG_PROBE }, + { "libssh-*", + SSH_BUG_PROBE }, { NULL, 0 } };