1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767
|
// vim:ts=4:shiftwidth=4:et
/*
mod_evasive for Apache 2
Copyright (c) by Jonathan A. Zdziarski
LICENSE
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.
*/
#include <sys/types.h>
#include <sys/socket.h>
#include <sys/stat.h>
#include <netinet/in.h>
#include <arpa/inet.h>
#include <string.h>
#include <stdlib.h>
#include <sys/types.h>
#include <time.h>
#include <syslog.h>
#include <errno.h>
#include "httpd.h"
#include "http_core.h"
#include "http_config.h"
#include "http_log.h"
#include "http_request.h"
module AP_MODULE_DECLARE_DATA evasive_module;
/* BEGIN DoS Evasive Maneuvers Definitions */
#define MAILER "/bin/mail %s"
#define LOG( A, ... ) { openlog("mod_evasive", LOG_PID, LOG_DAEMON); syslog( A, __VA_ARGS__ ); closelog(); }
#define DEFAULT_HASH_TBL_SIZE 3079ul // Default hash table size
#define DEFAULT_PAGE_COUNT 2 // Default maximum page hit count per interval
#define DEFAULT_SITE_COUNT 50 // Default maximum site hit count per interval
#define DEFAULT_PAGE_INTERVAL 1 // Default 1 Second page interval
#define DEFAULT_SITE_INTERVAL 1 // Default 1 Second site interval
#define DEFAULT_BLOCKING_PERIOD 10 // Default for Detected IPs; blocked for 10 seconds
#define DEFAULT_LOG_DIR "/tmp" // Default temp directory
#define DEFAULT_HTTP_REPLY HTTP_FORBIDDEN // Default HTTP Reply code (403)
/* END DoS Evasive Maneuvers Definitions */
/* BEGIN NTT (Named Timestamp Tree) Headers */
enum { ntt_num_primes = 28 };
/* ntt root tree */
struct ntt {
long size;
long items;
struct ntt_node **tbl;
};
/* ntt node (entry in the ntt root tree) */
struct ntt_node {
char *key;
time_t timestamp;
long count;
struct ntt_node *next;
};
/* ntt cursor */
struct ntt_c {
long iter_index;
struct ntt_node *iter_next;
};
struct ntt *ntt_create(unsigned long size);
int ntt_destroy(struct ntt *ntt);
struct ntt_node *ntt_find(struct ntt *ntt, const char *key);
struct ntt_node *ntt_insert(struct ntt *ntt, const char *key, time_t timestamp);
int ntt_delete(struct ntt *ntt, const char *key);
long ntt_hashcode(struct ntt *ntt, const char *key);
struct ntt_node *c_ntt_first(struct ntt *ntt, struct ntt_c *c);
struct ntt_node *c_ntt_next(struct ntt *ntt, struct ntt_c *c);
/* END NTT (Named Timestamp Tree) Headers */
/* BEGIN DoS Evasive Maneuvers Globals */
typedef struct {
int enabled;
char *context;
struct ntt *hit_list; // Our dynamic hash table
unsigned long hash_table_size;
int page_count;
int page_interval;
int site_count;
int site_interval;
int blocking_period;
char *email_notify;
char *log_dir;
char *system_command;
int http_reply;
} evasive_config;
static const char *whitelist(cmd_parms *cmd, void *dconfig, const char *ip);
int is_whitelisted(const char *ip, evasive_config *cfg);
/* END DoS Evasive Maneuvers Globals */
static void * create_dir_conf(apr_pool_t *p, char *context)
{
context = context ? context : "(undefined context)";
/* Create a new hit list for this listener */
evasive_config *cfg = apr_pcalloc(p, sizeof(evasive_config));
if (cfg) {
cfg->enabled = 0;
cfg->context = strdup(context);
cfg->hash_table_size = DEFAULT_HASH_TBL_SIZE;
cfg->hit_list = ntt_create(cfg->hash_table_size);
cfg->page_count = DEFAULT_PAGE_COUNT;
cfg->page_interval = DEFAULT_PAGE_INTERVAL;
cfg->site_count = DEFAULT_SITE_COUNT;
cfg->site_interval = DEFAULT_SITE_INTERVAL;
cfg->email_notify = NULL;
cfg->log_dir = NULL;
cfg->system_command = NULL;
cfg->http_reply = DEFAULT_HTTP_REPLY;
}
return cfg;
}
static const char *whitelist(cmd_parms *cmd, void *dconfig, const char *ip)
{
evasive_config *cfg = (evasive_config *) dconfig;
char entry[128];
snprintf(entry, sizeof(entry), "WHITELIST_%s", ip);
ntt_insert(cfg->hit_list, entry, time(NULL));
return NULL;
}
static int access_checker(request_rec *r)
{
evasive_config *cfg = (evasive_config *) ap_get_module_config(r->per_dir_config, &evasive_module);
int ret = OK;
/* BEGIN DoS Evasive Maneuvers Code */
if (cfg->enabled && r->prev == NULL && r->main == NULL && cfg->hit_list != NULL) {
char hash_key[2048];
struct ntt_node *n;
time_t t = time(NULL);
/* Check whitelist */
if (is_whitelisted(r->connection->remote_ip, cfg))
return OK;
/* First see if the IP itself is on "hold" */
n = ntt_find(cfg->hit_list, r->connection->remote_ip);
if (n != NULL && t-n->timestamp<cfg->blocking_period) {
/* If the IP is on "hold", make it wait longer in 403 land */
ret = cfg->http_reply;
n->timestamp = time(NULL);
/* Not on hold, check hit stats */
} else {
/* Has URI been hit too much? */
snprintf(hash_key, 2048, "%s_%s", r->connection->remote_ip, r->uri);
n = ntt_find(cfg->hit_list, hash_key);
if (n != NULL) {
/* If URI is being hit too much, add to "hold" list and 403 */
if (t-n->timestamp<cfg->page_interval && n->count>=cfg->page_count) {
ret = cfg->http_reply;
ntt_insert(cfg->hit_list, r->connection->remote_ip, time(NULL));
} else {
/* Reset our hit count list as necessary */
if (t-n->timestamp>=cfg->page_interval) {
n->count=0;
}
}
n->timestamp = t;
n->count++;
} else {
ntt_insert(cfg->hit_list, hash_key, t);
}
/* Has site been hit too much? */
snprintf(hash_key, 2048, "%s_SITE", r->connection->remote_ip);
n = ntt_find(cfg->hit_list, hash_key);
if (n != NULL) {
/* If site is being hit too much, add to "hold" list and 403 */
if (t-n->timestamp<cfg->site_interval && n->count>=cfg->site_count) {
ret = cfg->http_reply;
ntt_insert(cfg->hit_list, r->connection->remote_ip, time(NULL));
} else {
/* Reset our hit count list as necessary */
if (t-n->timestamp>=cfg->site_interval) {
n->count=0;
}
}
n->timestamp = t;
n->count++;
} else {
ntt_insert(cfg->hit_list, hash_key, t);
}
}
/* Perform email notification and system functions */
if (ret == cfg->http_reply) {
char filename[1024];
struct stat s;
FILE *file;
snprintf(filename, sizeof(filename), "%s/dos-%s", cfg->log_dir != NULL ? cfg->log_dir : DEFAULT_LOG_DIR, r->connection->remote_ip);
if (stat(filename, &s)) {
file = fopen(filename, "w");
if (file != NULL) {
fprintf(file, "%ld\n", getpid());
fclose(file);
LOG(LOG_ALERT, "Blacklisting address %s: possible DoS attack.", r->connection->remote_ip);
if (cfg->email_notify != NULL) {
snprintf(filename, sizeof(filename), MAILER, cfg->email_notify);
file = popen(filename, "w");
if (file != NULL) {
fprintf(file, "To: %s\n", cfg->email_notify);
fprintf(file, "Subject: HTTP BLACKLIST %s\n\n", r->connection->remote_ip);
fprintf(file, "mod_evasive HTTP Blacklisted %s\n", r->connection->remote_ip);
pclose(file);
}
}
if (cfg->system_command != NULL) {
snprintf(filename, sizeof(filename), cfg->system_command, r->connection->remote_ip);
system(filename);
}
} else {
LOG(LOG_ALERT, "Couldn't open logfile %s: %s",filename, strerror(errno));
}
} /* if (temp file does not exist) */
} /* if (ret == cfg->http_reply) */
} /* if (r->prev == NULL && r->main == NULL && cfg->hit_list != NULL) */
/* END DoS Evasive Maneuvers Code */
if (ret == cfg->http_reply
&& (ap_satisfies(r) != SATISFY_ANY || !ap_some_auth_required(r))) {
ap_log_rerror(APLOG_MARK, APLOG_ERR, 0, r,
"client denied by server configuration: %s",
r->filename);
}
return ret;
}
int is_whitelisted(const char *ip, evasive_config *cfg) {
char hashkey[128];
char octet[4][4];
char *dip;
char *oct;
int i = 0;
memset(octet, 0, 16);
dip = strdup(ip);
if (dip == NULL)
return 0;
oct = strtok(dip, ".");
while(oct != NULL && i<4) {
if (strlen(oct)<=3)
strcpy(octet[i], oct);
i++;
oct = strtok(NULL, ".");
}
free(dip);
/* Exact Match */
snprintf(hashkey, sizeof(hashkey), "WHITELIST_%s", ip);
if (ntt_find(cfg->hit_list, hashkey)!=NULL)
return 1;
/* IPv4 Wildcards */
snprintf(hashkey, sizeof(hashkey), "WHITELIST_%s.*.*.*", octet[0]);
if (ntt_find(cfg->hit_list, hashkey)!=NULL)
return 1;
snprintf(hashkey, sizeof(hashkey), "WHITELIST_%s.%s.*.*", octet[0], octet[1]);
if (ntt_find(cfg->hit_list, hashkey)!=NULL)
return 1;
snprintf(hashkey, sizeof(hashkey), "WHITELIST_%s.%s.%s.*", octet[0], octet[1], octet[2]);
if (ntt_find(cfg->hit_list, hashkey)!=NULL)
return 1;
/* No match */
return 0;
}
static apr_status_t destroy_config(void *dconfig) {
evasive_config *cfg = (evasive_config *) dconfig;
if (cfg != NULL) {
ntt_destroy(cfg->hit_list);
free(cfg->email_notify);
free(cfg->log_dir);
free(cfg->system_command);
free(cfg);
}
return APR_SUCCESS;
}
/* BEGIN NTT (Named Timestamp Tree) Functions */
static unsigned long ntt_prime_list[ntt_num_primes] =
{
53ul, 97ul, 193ul, 389ul, 769ul,
1543ul, 3079ul, 6151ul, 12289ul, 24593ul,
49157ul, 98317ul, 196613ul, 393241ul, 786433ul,
1572869ul, 3145739ul, 6291469ul, 12582917ul, 25165843ul,
50331653ul, 100663319ul, 201326611ul, 402653189ul, 805306457ul,
1610612741ul, 3221225473ul, 4294967291ul
};
/* Find the numeric position in the hash table based on key and modulus */
long ntt_hashcode(struct ntt *ntt, const char *key) {
unsigned long val = 0;
for (; *key; ++key) val = 5 * val + *key;
return(val % ntt->size);
}
/* Creates a single node in the tree */
struct ntt_node *ntt_node_create(const char *key) {
char *node_key;
struct ntt_node* node;
node = (struct ntt_node *) malloc(sizeof(struct ntt_node));
if (node == NULL) {
return NULL;
}
if ((node_key = strdup(key)) == NULL) {
free(node);
return NULL;
}
node->key = node_key;
node->timestamp = time(NULL);
node->next = NULL;
return(node);
}
/* Tree initializer */
struct ntt *ntt_create(unsigned long size) {
long i = 0;
struct ntt *ntt = (struct ntt *) malloc(sizeof(struct ntt));
if (ntt == NULL)
return NULL;
while (ntt_prime_list[i] < size) { i++; }
ntt->size = ntt_prime_list[i];
ntt->items = 0;
ntt->tbl = (struct ntt_node **) calloc(ntt->size, sizeof(struct ntt_node *));
if (ntt->tbl == NULL) {
free(ntt);
return NULL;
}
return(ntt);
}
/* Find an object in the tree */
struct ntt_node *ntt_find(struct ntt *ntt, const char *key) {
long hash_code;
struct ntt_node *node;
if (ntt == NULL) return NULL;
hash_code = ntt_hashcode(ntt, key);
node = ntt->tbl[hash_code];
while (node) {
if (!strcmp(key, node->key)) {
return(node);
}
node = node->next;
}
return((struct ntt_node *)NULL);
}
/* Insert a node into the tree */
struct ntt_node *ntt_insert(struct ntt *ntt, const char *key, time_t timestamp) {
long hash_code;
struct ntt_node *parent;
struct ntt_node *node;
struct ntt_node *new_node = NULL;
if (ntt == NULL) return NULL;
hash_code = ntt_hashcode(ntt, key);
parent = NULL;
node = ntt->tbl[hash_code];
while (node != NULL) {
if (strcmp(key, node->key) == 0) {
new_node = node;
node = NULL;
}
if (new_node == NULL) {
parent = node;
node = node->next;
}
}
if (new_node != NULL) {
new_node->timestamp = timestamp;
new_node->count = 0;
return new_node;
}
/* Create a new node */
new_node = ntt_node_create(key);
new_node->timestamp = timestamp;
new_node->count = 0;
ntt->items++;
/* Insert */
if (parent) { /* Existing parent */
parent->next = new_node;
return new_node; /* Return the locked node */
}
/* No existing parent; add directly to hash table */
ntt->tbl[hash_code] = new_node;
return new_node;
}
/* Tree destructor */
int ntt_destroy(struct ntt *ntt) {
struct ntt_node *node, *next;
struct ntt_c c;
if (ntt == NULL) return -1;
node = c_ntt_first(ntt, &c);
while(node != NULL) {
next = c_ntt_next(ntt, &c);
ntt_delete(ntt, node->key);
node = next;
}
free(ntt->tbl);
free(ntt);
ntt = (struct ntt *) NULL;
return 0;
}
/* Delete a single node in the tree */
int ntt_delete(struct ntt *ntt, const char *key) {
long hash_code;
struct ntt_node *parent = NULL;
struct ntt_node *node;
struct ntt_node *del_node = NULL;
if (ntt == NULL) return -1;
hash_code = ntt_hashcode(ntt, key);
node = ntt->tbl[hash_code];
while (node != NULL) {
if (strcmp(key, node->key) == 0) {
del_node = node;
node = NULL;
}
if (del_node == NULL) {
parent = node;
node = node->next;
}
}
if (del_node != NULL) {
if (parent) {
parent->next = del_node->next;
} else {
ntt->tbl[hash_code] = del_node->next;
}
free(del_node->key);
free(del_node);
ntt->items--;
return 0;
}
return -5;
}
/* Point cursor to first item in tree */
struct ntt_node *c_ntt_first(struct ntt *ntt, struct ntt_c *c) {
c->iter_index = 0;
c->iter_next = (struct ntt_node *)NULL;
return(c_ntt_next(ntt, c));
}
/* Point cursor to next iteration in tree */
struct ntt_node *c_ntt_next(struct ntt *ntt, struct ntt_c *c) {
long index;
struct ntt_node *node = c->iter_next;
if (ntt == NULL) return NULL;
if (node) {
if (node != NULL) {
c->iter_next = node->next;
return (node);
}
}
if (! node) {
while (c->iter_index < ntt->size) {
index = c->iter_index++;
if (ntt->tbl[index]) {
c->iter_next = ntt->tbl[index]->next;
return(ntt->tbl[index]);
}
}
}
return((struct ntt_node *)NULL);
}
/* END NTT (Named Pointer Tree) Functions */
/* BEGIN Configuration Functions */
static const char *
get_enabled(cmd_parms *cmd, void *dconfig, const char *value) {
evasive_config *cfg = (evasive_config *) dconfig;
cfg->enabled = (strcmp("true", value) == 0) ? 1 : 0;
return NULL;
}
static const char *
get_hash_tbl_size(cmd_parms *cmd, void *dconfig, const char *value) {
evasive_config *cfg = (evasive_config *) dconfig;
long n = strtol(value, NULL, 0);
if (n<=0) {
cfg->hash_table_size = DEFAULT_HASH_TBL_SIZE;
} else {
cfg->hash_table_size = n;
}
cfg->hit_list = ntt_create(cfg->hash_table_size);
return NULL;
}
static const char *
get_page_count(cmd_parms *cmd, void *dconfig, const char *value) {
evasive_config *cfg = (evasive_config *) dconfig;
long n = strtol(value, NULL, 0);
if (n<=0) {
cfg->page_count = DEFAULT_PAGE_COUNT;
} else {
cfg->page_count = n;
}
return NULL;
}
static const char *
get_site_count(cmd_parms *cmd, void *dconfig, const char *value) {
evasive_config *cfg = (evasive_config *) dconfig;
long n = strtol(value, NULL, 0);
if (n<=0) {
cfg->site_count = DEFAULT_SITE_COUNT;
} else {
cfg->site_count = n;
}
return NULL;
}
static const char *
get_page_interval(cmd_parms *cmd, void *dconfig, const char *value) {
evasive_config *cfg = (evasive_config *) dconfig;
long n = strtol(value, NULL, 0);
if (n<=0) {
cfg->page_interval = DEFAULT_PAGE_INTERVAL;
} else {
cfg->page_interval = n;
}
return NULL;
}
static const char *
get_site_interval(cmd_parms *cmd, void *dconfig, const char *value) {
evasive_config *cfg = (evasive_config *) dconfig;
long n = strtol(value, NULL, 0);
if (n<=0) {
cfg->site_interval = DEFAULT_SITE_INTERVAL;
} else {
cfg->site_interval = n;
}
return NULL;
}
static const char *
get_blocking_period(cmd_parms *cmd, void *dconfig, const char *value) {
evasive_config *cfg = (evasive_config *) dconfig;
long n = strtol(value, NULL, 0);
if (n<=0) {
cfg->blocking_period = DEFAULT_BLOCKING_PERIOD;
} else {
cfg->blocking_period = n;
}
return NULL;
}
static const char *
get_log_dir(cmd_parms *cmd, void *dconfig, const char *value) {
evasive_config *cfg = (evasive_config *) dconfig;
if (value != NULL && value[0] != 0) {
if (cfg->log_dir != NULL)
free(cfg->log_dir);
cfg->log_dir = strdup(value);
}
return NULL;
}
static const char *
get_email_notify(cmd_parms *cmd, void *dconfig, const char *value) {
evasive_config *cfg = (evasive_config *) dconfig;
if (value != NULL && value[0] != 0) {
if (cfg->email_notify != NULL)
free(cfg->email_notify);
cfg->email_notify = strdup(value);
}
return NULL;
}
static const char *
get_system_command(cmd_parms *cmd, void *dconfig, const char *value) {
evasive_config *cfg = (evasive_config *) dconfig;
if (value != NULL && value[0] != 0) {
if (cfg->system_command != NULL)
free(cfg->system_command);
cfg->system_command = strdup(value);
}
return NULL;
}
static const char *
get_http_reply(cmd_parms *cmd, void *dconfig, const char *value) {
evasive_config *cfg = (evasive_config *) dconfig;
long reply = strtol(value, NULL, 0);
if (reply <= 0) {
cfg->http_reply = HTTP_FORBIDDEN;
} else {
cfg->http_reply = reply;
}
return NULL;
}
/* END Configuration Functions */
static const command_rec access_cmds[] =
{
AP_INIT_TAKE1("DOSEnabled", get_enabled, NULL, RSRC_CONF,
"Enable mod_evasive (either globally or in the virtualhost where it is specified)"),
AP_INIT_TAKE1("DOSHashTableSize", get_hash_tbl_size, NULL, RSRC_CONF,
"Set size of hash table"),
AP_INIT_TAKE1("DOSPageCount", get_page_count, NULL, RSRC_CONF,
"Set maximum page hit count per interval"),
AP_INIT_TAKE1("DOSSiteCount", get_site_count, NULL, RSRC_CONF,
"Set maximum site hit count per interval"),
AP_INIT_TAKE1("DOSPageInterval", get_page_interval, NULL, RSRC_CONF,
"Set page interval"),
AP_INIT_TAKE1("DOSSiteInterval", get_site_interval, NULL, RSRC_CONF,
"Set site interval"),
AP_INIT_TAKE1("DOSBlockingPeriod", get_blocking_period, NULL, RSRC_CONF,
"Set blocking period for detected DoS IPs"),
AP_INIT_TAKE1("DOSEmailNotify", get_email_notify, NULL, RSRC_CONF,
"Set email notification"),
AP_INIT_TAKE1("DOSLogDir", get_log_dir, NULL, RSRC_CONF,
"Set log dir"),
AP_INIT_TAKE1("DOSSystemCommand", get_system_command, NULL, RSRC_CONF,
"Set system command on DoS"),
AP_INIT_ITERATE("DOSWhitelist", whitelist, NULL, RSRC_CONF,
"IP-addresses wildcards to whitelist"),
AP_INIT_ITERATE("DOSHTTPStatus", get_http_reply, NULL, RSRC_CONF,
"HTTP reply code"),
{ NULL }
};
static void register_hooks(apr_pool_t *p) {
ap_hook_access_checker(access_checker, NULL, NULL, APR_HOOK_MIDDLE);
apr_pool_cleanup_register(p, NULL, apr_pool_cleanup_null, destroy_config);
};
module AP_MODULE_DECLARE_DATA evasive_module =
{
STANDARD20_MODULE_STUFF,
create_dir_conf,
NULL,
NULL,
NULL,
access_cmds,
register_hooks
};
|