mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-15 23:55:03 +03:00
Adds lowercase transformation
This commit is contained in:
parent
391002c665
commit
1924b4ebca
@ -72,7 +72,7 @@ ACTIONS = \
|
|||||||
actions/transformations/html_entity_decode.cc \
|
actions/transformations/html_entity_decode.cc \
|
||||||
actions/transformations/js_decode.cc \
|
actions/transformations/js_decode.cc \
|
||||||
actions/transformations/length.cc \
|
actions/transformations/length.cc \
|
||||||
actions/transformations/lowercase.cc \
|
actions/transformations/lower_case.cc \
|
||||||
actions/transformations/md5.cc \
|
actions/transformations/md5.cc \
|
||||||
actions/transformations/none.cc \
|
actions/transformations/none.cc \
|
||||||
actions/transformations/normalise_path.cc \
|
actions/transformations/normalise_path.cc \
|
||||||
|
@ -13,7 +13,7 @@
|
|||||||
*
|
*
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#include "actions/transformations/lowercase.h"
|
#include "actions/transformations/lower_case.h"
|
||||||
|
|
||||||
#include <algorithm>
|
#include <algorithm>
|
||||||
#include <string>
|
#include <string>
|
@ -18,8 +18,8 @@
|
|||||||
#include "actions/action.h"
|
#include "actions/action.h"
|
||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
#ifndef SRC_ACTIONS_TRANSFORMATIONS_LOWERCASE_H_
|
#ifndef SRC_ACTIONS_TRANSFORMATIONS_LOWER_CASE_H_
|
||||||
#define SRC_ACTIONS_TRANSFORMATIONS_LOWERCASE_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_LOWER_CASE_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
||||||
@ -42,4 +42,4 @@ class LowerCase : public Transformation {
|
|||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#endif // SRC_ACTIONS_TRANSFORMATIONS_LOWERCASE_H_
|
#endif // SRC_ACTIONS_TRANSFORMATIONS_LOWER_CASE_H_
|
@ -33,7 +33,7 @@
|
|||||||
#include "actions/transformations/html_entity_decode.h"
|
#include "actions/transformations/html_entity_decode.h"
|
||||||
#include "actions/transformations/js_decode.h"
|
#include "actions/transformations/js_decode.h"
|
||||||
#include "actions/transformations/length.h"
|
#include "actions/transformations/length.h"
|
||||||
#include "actions/transformations/lowercase.h"
|
#include "actions/transformations/lower_case.h"
|
||||||
#include "actions/transformations/md5.h"
|
#include "actions/transformations/md5.h"
|
||||||
#include "actions/transformations/none.h"
|
#include "actions/transformations/none.h"
|
||||||
#include "actions/transformations/normalise_path.h"
|
#include "actions/transformations/normalise_path.h"
|
||||||
|
@ -1 +1 @@
|
|||||||
Subproject commit 35f108949b1e54c75e95817836e2ddaba227be75
|
Subproject commit e1671340cf078af3c904fca2be3e2266c5cef8b2
|
Loading…
x
Reference in New Issue
Block a user