?? sp_react.c
字號:
/* $Id$ *//*** Copyright (C) 1998-2002 Martin Roesch <roesch@sourcefire.com>** Copyright (C) 2000,2001 Maciej Szarpak**** This program is free software; you can redistribute it and/or modify** it under the terms of the GNU General Public License Version 2 as** published by the Free Software Foundation. You may not use, modify or** distribute this program under any other version of the GNU General** Public License.**** 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.*//* Snort React Plugin by Maciej Szarpak, Warsaw University of Technology *//* sp_react.c * * Purpose: * * React! Deny the access to some unsuitable web-sites (like porn sites) or * close the offending connections. * * Arguments: * * This plugin can take two basic arguments: * block => closes the connection and sends a suitable HTML page to the * browser (if got tcp 80 port packet) * warn => sends a HTML/JavaScript warning to the browser * * The following additional arguments are valid for this option: * msg => puts the msg option comment into the HTML page * proxy <port_nr> => sends the respond code to the proxy port_nr * * Effect: * * Closes the connections by sending TCP RST packets (similar to resp option). * If the connection uses http or proxy server ports a visible information * to a browser user is send (HTML code). * */#ifdef HAVE_CONFIG_H#include "config.h"#endif#if defined(ENABLE_RESPONSE) || defined(ENABLE_REACT)#include <sys/types.h>#include <stdlib.h>#include <string.h>#include <ctype.h>#include <libnet.h>#include "rules.h"#include "decode.h"#include "plugbase.h"#include "parser.h"#include "debug.h"#include "util.h"#include "plugin_enum.h"#define TCP_DATA_BUF 1024#define REACT_BLOCK 0x01#define REACT_WARN 0x02typedef struct _ReactData{ int reaction_flag; /* flexible reaction on alert */ int proxy_port_nr; /* proxy TCP port */ u_int html_resp_size; /* size of app html response */ u_char *html_resp_buf; /* html response to send */} ReactData;void ReactInit(char *, OptTreeNode *, int);void ParseReact(char *, OptTreeNode *, ReactData *);int React(Packet *, RspFpList *);int SendTCP(u_long, u_long, u_short, u_short, int, int, u_char, const u_char *, int);#if defined(ENABLE_REACT) && !defined(ENABLE_RESPONSE)void ReactRestart(int signal, void *data);#endif#if defined(ENABLE_RESPONSE) && !defined(ENABLE_REACT)extern int nd; /* raw socket */#elif defined(ENABLE_REACT) && !defined(ENABLE_RESPONSE)int nd = -1; /* raw socket */#endif/**************************************************************************** * * Function: SetupReact() * * Purpose: Flexible response plugin. Registers the configuration function * and links it to a rule keyword. * * Arguments: None. * * Returns: void function * ****************************************************************************/void SetupReact(void){/* we need an empty plug otherwise. To avoid #ifdef in plugbase */ RegisterPlugin("react", ReactInit, OPT_TYPE_ACTION); DEBUG_WRAP(DebugMessage(DEBUG_PLUGIN, "Plugin: React Initialized!\n"););}/**************************************************************************** * * Function: ReactInit(char *, OptTreeNode *, int protocol) * * Purpose: React rule configuration function. Handles parsing the rule * information and attaching the associated structures to the OTN. * * Arguments: data => rule arguments/data * otn => pointer to the current rule option list node * protocol => current rule protocol * * Returns: void function * ****************************************************************************/void ReactInit(char *data, OptTreeNode *otn, int protocol){ ReactData *idx; DEBUG_WRAP(DebugMessage(DEBUG_PLUGIN,"In ReactInit()\n"););#if defined(ENABLE_REACT) && !defined(ENABLE_RESPONSE) AddFuncToRestartList(ReactRestart, NULL);#endif if(protocol != IPPROTO_TCP) { FatalError("Line %s(%d): TCP Options on non-TCP rule\n", file_name, file_line); } /* need to check raw sock here too if it's not been opened already */ if(nd == -1) /* need to open it only once */ { if((nd = libnet_open_raw_sock(IPPROTO_RAW)) < 0) { FatalError("cannot open raw socket for libnet, exiting...\n"); } } if((idx = (ReactData *) calloc(sizeof(ReactData), sizeof(char))) == NULL) { FatalError("sp_react ReactInit() calloc failed!\n"); } /* parse the react keywords */ ParseReact(data, otn, idx); /* finally, attach the option's detection function to the rule's detect function pointer list */ AddRspFuncToList(React, otn, (void *)idx); return;}/**************************************************************************** * * Function: ParseReact(char *, OptTreeNode *) * * Purpose: React rule configuration function. Handles parsing the rule * information. * * Arguments: data => rule arguments/data * otn => pointer to the current rule option list node * * Returns: void function * ****************************************************************************/void ParseReact(char *data, OptTreeNode *otn, ReactData *rd){ ReactData *idx; char *tok; /* token buffer */ u_int buf_size; int ret; char tmp_buf1[] = "<HTML><HEAD><TITLE>Snort</TITLE></HEAD><BODY BGCOLOR=\"#FFFFFF\"><CENTER><BR><H1>Snort!</H1>Version "; char tmp_buf2[] = "<H1><BR><BR><FONT COLOR=\"#FF0000\">You are not authorized to open this site!</FONT><BR><BR></H1><H2>"; char tmp_buf3[] = "<BR></H2><BR><A HREF=\"mailto:mszarpak@elka.pw.edu.pl\">Any questions?</A></CENTER></BODY></HTML>"; char tmp_buf4[]="<HTML><HEAD><SCRIPT LANGUAGE=\"JavaScript\"><!-- Hiding function pop() { alert(\"Snort, ver. "; char tmp_buf5[] = "\\n\\nThis page contents ...!\\n\\n"; char tmp_buf6[] = "\"); } // --></SCRIPT></HEAD><BODY ONLOAD=\"pop()\"></BODY></HTML>"; DEBUG_WRAP(DebugMessage(DEBUG_PLUGIN, "In ParseReact()\n");); idx = rd; /* set the standard proxy port */ idx->proxy_port_nr = 8080; /* parse the react option keywords */ while(isspace((int)*data)) data++; tok = strtok(data, ","); while(tok) { if(!strcasecmp(tok, "block")) idx->reaction_flag = REACT_BLOCK; else if(!strcasecmp(tok, "warn"))/* idx->reaction_flag = REACT_WARN*/; else if(!strcasecmp(tok, "msg")) if(otn->sigInfo.message == NULL) FatalError( "%s(%d) => msg option missed or react " "keyword placed before msg!\n", file_name, file_line); else idx->html_resp_size = 1; else if(!strcasecmp(tok, "proxy")) { if(strlen(tok) > strlen("proxy")) { char *endp; tok = tok + 5; while(isspace((int)(*tok))) tok++; idx->proxy_port_nr = strtoul(tok,&endp,10); if(endp == tok) { FatalError("Can't parse the dang proxy option\n"); } } else { FatalError("Can't parse the dang proxy option\n"); } /* make sure it's in bounds */ if((idx->proxy_port_nr < 0) || (idx->proxy_port_nr >= 65536)) { FatalError("%s(%d): bad proxy port number: %d\n", file_name, file_line, idx->proxy_port_nr); } } else { FatalError("%s(%d): invalid react modifier: %s\n", file_name, file_line, tok); } tok = strtok(NULL, ","); /* get rid of spaces */ if(tok != NULL) while(isspace((int)*tok)) tok++; } /* test the basic modifier */ if(idx->reaction_flag == 0) FatalError("%s(%d): missing react basic modifier\n", file_name, file_line); else { /* prepare the html response data */ buf_size = 1; /* allocate one extra byte for '\0' */ if(idx->reaction_flag == REACT_BLOCK) { /* count the respond buf size (max TCP_DATA_BUF) */ buf_size += strlen(tmp_buf1) + strlen(tmp_buf2) + strlen(tmp_buf3) + strlen(VERSION);
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -