2005-05-08 09:24:11 +00:00
|
|
|
/* NeoStats - IRC Statistical Services
|
2006-01-26 15:40:07 +00:00
|
|
|
** Copyright (c) 1999-2006 Adam Rutter, Justin Hammond, Mark Hetherington
|
2005-05-08 09:24:11 +00:00
|
|
|
** http://www.neostats.net/
|
|
|
|
**
|
|
|
|
** This program is free software; you can redistribute it and/or modify
|
|
|
|
** it under the terms of the GNU General Public License as published by
|
|
|
|
** the Free Software Foundation; either version 2 of the License, or
|
|
|
|
** (at your option) any later version.
|
|
|
|
**
|
|
|
|
** This program is distributed in the hope that it will be useful,
|
|
|
|
** but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
** GNU General Public License for more details.
|
|
|
|
**
|
|
|
|
** You should have received a copy of the GNU General Public License
|
|
|
|
** along with this program; if not, write to the Free Software
|
|
|
|
** Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
|
|
|
|
** USA
|
|
|
|
**
|
|
|
|
** NeoStats CVS Identification
|
2005-05-08 09:32:13 +00:00
|
|
|
** $Id$
|
2005-05-08 09:24:11 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
#include "neostats.h"
|
|
|
|
|
|
|
|
const char *blsb_about[] = {
|
2005-10-20 21:12:38 +00:00
|
|
|
"\2BLSB\2",
|
2005-05-08 09:24:11 +00:00
|
|
|
"",
|
2005-10-20 21:12:38 +00:00
|
|
|
"Checks clients against external blacklists as",
|
|
|
|
"they connect to the network.",
|
2005-05-08 09:24:11 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *blsb_help_check[] = {
|
2005-05-25 17:40:04 +00:00
|
|
|
"Scan a user",
|
2005-05-08 09:24:11 +00:00
|
|
|
"Syntax: \2CHECK <nick|ip|hostname>\2",
|
|
|
|
"",
|
2005-05-22 21:39:43 +00:00
|
|
|
"Scan a user connected to your network, an IP address, or a",
|
|
|
|
"hostname for insecure proxies and report the status. Any",
|
|
|
|
"insecure proxy found, will be banned from the network.",
|
2005-05-08 09:24:11 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2005-05-22 20:08:09 +00:00
|
|
|
const char *blsb_help_add[] = {
|
2005-05-25 17:40:04 +00:00
|
|
|
"Add to the blacklist domains",
|
2006-10-27 12:50:40 +00:00
|
|
|
"Syntax: \2ADD <domain> <type> <name> <NOBAN|akill reason>\2",
|
2005-05-22 20:08:09 +00:00
|
|
|
"",
|
2005-05-22 21:39:43 +00:00
|
|
|
"Add a domain to the blacklist lookup list",
|
|
|
|
"<type> 1 for TXT record lookups",
|
|
|
|
" 2 for A record lookups",
|
|
|
|
"<domain> domain for lookups, e.g. opm.blitzed.org",
|
|
|
|
"<name> name to assign to this entry, e.g. Blitzed OPM",
|
2005-12-11 14:45:22 +00:00
|
|
|
"[NOBAN] does not ban if found, only inform the services channel",
|
2007-03-04 15:06:01 +00:00
|
|
|
"<akill reason> may include %%s which substitutes the ip address",
|
2005-05-22 20:08:09 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *blsb_help_del[] = {
|
2005-05-25 17:40:04 +00:00
|
|
|
"Delete from the blacklist domains",
|
2005-05-22 21:39:43 +00:00
|
|
|
"Syntax: \2DEL <domain>\2",
|
2005-05-22 20:08:09 +00:00
|
|
|
"",
|
2005-05-22 21:39:43 +00:00
|
|
|
"Delete entry matching <domain> from the list of blacklist domains",
|
2005-05-22 20:08:09 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *blsb_help_list[] = {
|
2005-05-25 17:40:04 +00:00
|
|
|
"List the blacklist domains",
|
2005-05-22 20:08:09 +00:00
|
|
|
"Syntax: \2LIST\2",
|
|
|
|
"",
|
|
|
|
"List the current domains used for lookups",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
2005-05-08 09:24:11 +00:00
|
|
|
const char *blsb_help_set_akill [] = {
|
|
|
|
"\2AKILL <ON|OFF>\2",
|
2005-05-21 22:41:51 +00:00
|
|
|
"Whether to issue an akill for positive lookups",
|
2005-05-08 09:24:11 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *blsb_help_set_akilltime [] = {
|
|
|
|
"\2AKILLTIME <time>\2",
|
2005-05-22 21:39:43 +00:00
|
|
|
"How long the user will be banned from the network",
|
2005-05-08 09:24:11 +00:00
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *blsb_help_set_verbose [] = {
|
|
|
|
"\2VERBOSE <ON|OFF>\2",
|
|
|
|
"Whether blsb is verbose in operation or not",
|
|
|
|
NULL
|
|
|
|
};
|
|
|
|
|
|
|
|
const char *blsb_help_set_exclusions[] = {
|
|
|
|
"\2EXCLUSIONS <ON|OFF>\2",
|
|
|
|
"Use global exclusion list in addition to local exclusion list",
|
|
|
|
NULL
|
|
|
|
};
|