mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-30 11:44:32 +03:00
Adds transformation functions stub
Added stub for all transformations functions supported on ModSecurity 2.9
This commit is contained in:
@@ -28,6 +28,50 @@ pkginclude_HEADERS = \
|
||||
../headers/modsecurity/intervention.h
|
||||
|
||||
|
||||
ACTIONS = \
|
||||
actions/action.cc \
|
||||
actions/block.cc \
|
||||
actions/phase.cc \
|
||||
actions/redirect.cc \
|
||||
actions/rule_id.cc \
|
||||
actions/status.cc \
|
||||
actions/transformations/base64_decode.cc \
|
||||
actions/transformations/base64_decode_ext.cc \
|
||||
actions/transformations/cmd_line.cc \
|
||||
actions/transformations/compress_whitespace.cc \
|
||||
actions/transformations/css_decode.cc \
|
||||
actions/transformations/escape_seq_decode.cc \
|
||||
actions/transformations/hex_decode.cc \
|
||||
actions/transformations/hex_encode.cc \
|
||||
actions/transformations/html_entity_decode.cc \
|
||||
actions/transformations/js_decode.cc \
|
||||
actions/transformations/length.cc \
|
||||
actions/transformations/lowercase.cc \
|
||||
actions/transformations/md5.cc \
|
||||
actions/transformations/none.cc \
|
||||
actions/transformations/normalise_path.cc \
|
||||
actions/transformations/normalise_path_win.cc \
|
||||
actions/transformations/parity_even_7bit.cc \
|
||||
actions/transformations/parity_odd_7bit.cc \
|
||||
actions/transformations/parity_zero_7bit.cc \
|
||||
actions/transformations/remove_comments.cc \
|
||||
actions/transformations/remove_comments_char.cc \
|
||||
actions/transformations/remove_nulls.cc \
|
||||
actions/transformations/remove_whitespace.cc \
|
||||
actions/transformations/replace_comments.cc \
|
||||
actions/transformations/replace_nulls.cc \
|
||||
actions/transformations/sha1.cc \
|
||||
actions/transformations/sql_hex_decode.cc \
|
||||
actions/transformations/transformation.cc \
|
||||
actions/transformations/trim.cc \
|
||||
actions/transformations/trim_left.cc \
|
||||
actions/transformations/trim_right.cc \
|
||||
actions/transformations/url_decode.cc \
|
||||
actions/transformations/url_decode_uni.cc \
|
||||
actions/transformations/url_encode.cc \
|
||||
actions/transformations/utf8_to_unicode.cc
|
||||
|
||||
|
||||
libmodsecurity_la_SOURCES = \
|
||||
parser/seclang-parser.yy \
|
||||
parser/seclang-scanner.ll \
|
||||
@@ -76,15 +120,9 @@ libmodsecurity_la_SOURCES = \
|
||||
operators/str_eq.cc \
|
||||
operators/str_match.cc \
|
||||
operators/begins_with.cc \
|
||||
actions/rule_id.cc \
|
||||
actions/phase.cc \
|
||||
actions/action.cc \
|
||||
actions/block.cc \
|
||||
actions/redirect.cc \
|
||||
actions/status.cc \
|
||||
actions/transformations/transformation.cc \
|
||||
actions/transformations/trim.cc \
|
||||
actions/transformations/lowercase.cc
|
||||
${ACTIONS}
|
||||
|
||||
|
||||
|
||||
|
||||
libmodsecurity_la_CFLAGS =
|
||||
|
Reference in New Issue
Block a user