mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-11-16 17:41:52 +03:00
Adds support to urlEncode transformation
This commit is contained in:
@@ -108,7 +108,7 @@ Transformation* Transformation::instantiate(std::string a) {
|
||||
IF_MATCH(trim) { return new Trim(a); }
|
||||
IF_MATCH(urlDecode) { return new UrlDecode(a); }
|
||||
IF_MATCH(urlDecodeUni) { return new UrlDecodeUni(a); }
|
||||
IF_MATCH(url_encode) { return new UrlEncode(a); }
|
||||
IF_MATCH(urlEncode) { return new UrlEncode(a); }
|
||||
IF_MATCH(utf8_to_unicode) { return new Utf8Unicode(a); }
|
||||
|
||||
return new Transformation(a);
|
||||
|
||||
Reference in New Issue
Block a user