Adds support to SecArgumentSeparator

This commit is contained in:
Felipe Zimmerle
2017-08-16 18:27:51 -03:00
parent a302538521
commit 48f1470269
7 changed files with 6477 additions and 6324 deletions

View File

@@ -319,6 +319,11 @@ class RulesProperties {
from->m_uploadTmpDirectory.m_value;
}
if (from->m_secArgumentSeparator.m_set == true) {
to->m_secArgumentSeparator.m_value = \
from->m_secArgumentSeparator.m_value;
}
if (from->m_httpblKey.m_set == true) {
to->m_httpblKey.m_value = from->m_httpblKey.m_value;
to->m_httpblKey.m_set = from->m_httpblKey.m_set;
@@ -446,6 +451,7 @@ class RulesProperties {
ConfigString m_httpblKey;
ConfigString m_uploadDirectory;
ConfigString m_uploadTmpDirectory;
ConfigString m_secArgumentSeparator;
std::vector<actions::Action *> m_defaultActions[8];
std::vector<modsecurity::Rule *> m_rules[8];
};