]> git.ipfire.org Git - thirdparty/suricata.git/commitdiff
detect: implement http_accept_lang sticky buffer
authorVictor Julien <victor@inliniac.net>
Sat, 1 Apr 2017 10:33:49 +0000 (12:33 +0200)
committerVictor Julien <victor@inliniac.net>
Thu, 20 Apr 2017 15:41:11 +0000 (17:41 +0200)
Inspects Accept-Language header

src/Makefile.am
src/detect-http-accept-lang.c [new file with mode: 0644]
src/detect-http-accept-lang.h [new file with mode: 0644]
src/detect-http-headers.c
src/detect.h

index 2279f368efa479c234f76d28986d3697492ce7d0..460c75c82cf14dc863423b780486d93a5862d759 100644 (file)
@@ -164,6 +164,7 @@ detect-geoip.c detect-geoip.h \
 detect-gid.c detect-gid.h \
 detect-hostbits.c detect-hostbits.h \
 detect-http-accept.c detect-http-accept.h \
+detect-http-accept-lang.c detect-http-accept-lang.h \
 detect-http-client-body.c detect-http-client-body.h \
 detect-http-connection.c detect-http-connection.h \
 detect-http-cookie.c detect-http-cookie.h \
diff --git a/src/detect-http-accept-lang.c b/src/detect-http-accept-lang.c
new file mode 100644 (file)
index 0000000..2d1a570
--- /dev/null
@@ -0,0 +1,46 @@
+/* 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_accept_lang sticky buffer
+ */
+
+#define KEYWORD_NAME "http_accept_lang"
+#define KEYWORD_DOC "http-keywords#http-accept-lang"
+#define BUFFER_NAME "http_accept_lang"
+#define BUFFER_DESC "http accept language header"
+#define HEADER_NAME "Accept-Language"
+#define KEYWORD_ID DETECT_AL_HTTP_HEADER_ACCEPT_LANG
+#define KEYWORD_TOSERVER 1
+
+#include "detect-http-headers-stub.h"
+
+void RegisterHttpHeadersAcceptLang(void)
+{
+    DetectHttpHeadersRegisterStub();
+}
diff --git a/src/detect-http-accept-lang.h b/src/detect-http-accept-lang.h
new file mode 100644 (file)
index 0000000..735ae91
--- /dev/null
@@ -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_ACCEPT_LANG_H__
+#define __DETECT_HTTP_ACCEPT_LANG_H__
+
+void RegisterHttpHeadersAcceptLang(void);
+
+#endif /* __DETECT_HTTP_ACCEPT_LANG_H__ */
index 91436d580a7d1a44d00e035716d7f77a3c3e2ab6..93380ab9b02cdfa107f166519f9c251244e4bdcc 100644 (file)
  */
 
 #include "detect-http-accept.h"
+#include "detect-http-accept-lang.h"
 #include "detect-http-connection.h"
 #include "detect-http-referer.h"
 
 void DetectHttpHeadersRegister(void)
 {
     RegisterHttpHeadersAccept();
+    RegisterHttpHeadersAcceptLang();
     RegisterHttpHeadersReferer();
     RegisterHttpHeadersConnection();
 }
index 41764d8904bf218ee7d8ce722737f158fc4a0251..6d266ca014d6462c546736e6f6f440547d0785cb 100644 (file)
@@ -1242,6 +1242,7 @@ enum {
     DETECT_AL_HTTP_HEADER,
     DETECT_AL_HTTP_HEADER_NAMES,
     DETECT_AL_HTTP_HEADER_ACCEPT,
+    DETECT_AL_HTTP_HEADER_ACCEPT_LANG,
     DETECT_AL_HTTP_HEADER_CONNECTION,
     DETECT_AL_HTTP_HEADER_REFERER,
     DETECT_AL_HTTP_RAW_HEADER,