mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-09-29 19:24:29 +03:00
General improvements on audit logs information
Making actions: msg, logdata, tag and others to work in the same fashion that they work on ModSecurity v2.x
This commit is contained in:
@@ -71,6 +71,7 @@ class ModSecurity;
|
||||
class Transaction;
|
||||
class Rules;
|
||||
class Collections;
|
||||
class RuleMessage;
|
||||
namespace actions {
|
||||
class Action;
|
||||
}
|
||||
@@ -264,14 +265,14 @@ class Transaction {
|
||||
|
||||
/**
|
||||
* This variable holds all the messages asked to be save by the utilization
|
||||
* of the actions: `log_data' and `msg'. These should be included on the
|
||||
* auditlogs.
|
||||
* of the actions: `log_data' and `msg'. These should be included on the
|
||||
* auditlogs.
|
||||
*/
|
||||
std::list<std::string> m_rulesMessages;
|
||||
std::list<modsecurity::RuleMessage *> m_rulesMessages;
|
||||
|
||||
/**
|
||||
* The list m_ruleTags contains all tags that were specified by the
|
||||
* action `tag'.
|
||||
* action `tag'.
|
||||
*/
|
||||
std::list<std::string> m_ruleTags;
|
||||
|
||||
|
Reference in New Issue
Block a user