mirror of https://github.com/OISF/suricata
detect: implement http_content_len sticky buffer
This implements inspection of the Content-Length buffer as a content sticky buffer.pull/2673/head
parent
d96cbddbe4
commit
595f6d1f26
@ -0,0 +1,47 @@
|
||||
/* Copyright (C) 2007-2017 Open Information Security Foundation
|
||||
*
|
||||
* You can copy, redistribute or modify this Program under the terms of
|
||||
* the GNU General Public License version 2 as published by the Free
|
||||
* Software Foundation.
|
||||
*
|
||||
* 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
|
||||
* version 2 along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301, USA.
|
||||
*/
|
||||
|
||||
/**
|
||||
* \ingroup httplayer
|
||||
*
|
||||
* @{
|
||||
*/
|
||||
|
||||
|
||||
/**
|
||||
* \file
|
||||
*
|
||||
* \author Victor Julien <victor@inliniac.net>
|
||||
*
|
||||
* Implements http_content_len sticky buffer
|
||||
*/
|
||||
|
||||
#define KEYWORD_NAME "http_content_len"
|
||||
#define KEYWORD_DOC "http-keywords#http-content-len"
|
||||
#define BUFFER_NAME "http_content_len"
|
||||
#define BUFFER_DESC "http content length header"
|
||||
#define HEADER_NAME "Content-Length"
|
||||
#define KEYWORD_ID DETECT_AL_HTTP_HEADER_CONTENT_LEN
|
||||
#define KEYWORD_TOSERVER 1
|
||||
#define KEYWORD_TOCLIENT 1
|
||||
|
||||
#include "detect-http-headers-stub.h"
|
||||
|
||||
void RegisterHttpHeadersContentLen(void)
|
||||
{
|
||||
DetectHttpHeadersRegisterStub();
|
||||
}
|
@ -0,0 +1,23 @@
|
||||
/* Copyright (C) 2007-2017 Open Information Security Foundation
|
||||
*
|
||||
* You can copy, redistribute or modify this Program under the terms of
|
||||
* the GNU General Public License version 2 as published by the Free
|
||||
* Software Foundation.
|
||||
*
|
||||
* 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
|
||||
* version 2 along with this program; if not, write to the Free Software
|
||||
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
||||
* 02110-1301, USA.
|
||||
*/
|
||||
|
||||
#ifndef __DETECT_HTTP_CONTENT_LEN_H__
|
||||
#define __DETECT_HTTP_CONTENT_LEN_H__
|
||||
|
||||
void RegisterHttpHeadersContentLen(void);
|
||||
|
||||
#endif /* __DETECT_HTTP_CONTENT_LEN_H__ */
|
Loading…
Reference in New Issue