mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-30 11:44:32 +03:00
Fix in parser: now understanding the removeCommentsChar transformation
SpiderLabs/ModSecurity#1098
This commit is contained in:
@@ -95,7 +95,7 @@ Transformation* Transformation::instantiate(std::string a) {
|
||||
IF_MATCH(parity_even_7bit) { return new ParityEven7bit(a); }
|
||||
IF_MATCH(parity_odd_7bit) { return new ParityOdd7bit(a); }
|
||||
IF_MATCH(parity_zero_7bit) { return new ParityZero7bit(a); }
|
||||
IF_MATCH(remove_comments_char) { return new RemoveCommentsChar(a); }
|
||||
IF_MATCH(removeCommentsChar) { return new RemoveCommentsChar(a); }
|
||||
IF_MATCH(remove_comments) { return new RemoveComments(a); }
|
||||
IF_MATCH(removeNulls) { return new RemoveNulls(a); }
|
||||
IF_MATCH(remove_whitespace) { return new RemoveWhitespace(a); }
|
||||
|
Reference in New Issue
Block a user