mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-13 21:36:00 +03:00
Changes library namespace from ModSecurity to modsecurity
This commit is contained in:
parent
a69e49a1b0
commit
b5a43871e6
@ -34,6 +34,7 @@
|
|||||||
#define HEADERS_MODSECURITY_ASSAY_H_
|
#define HEADERS_MODSECURITY_ASSAY_H_
|
||||||
|
|
||||||
#ifndef __cplusplus
|
#ifndef __cplusplus
|
||||||
|
typedef struct ModSecurity_t ModSecurity;
|
||||||
typedef struct Assay_t Assay;
|
typedef struct Assay_t Assay;
|
||||||
typedef struct Rules_t Rules;
|
typedef struct Rules_t Rules;
|
||||||
#endif
|
#endif
|
||||||
@ -64,7 +65,7 @@ typedef struct Rules_t Rules;
|
|||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
|
|
||||||
class ModSecurity;
|
class ModSecurity;
|
||||||
class Assay;
|
class Assay;
|
||||||
|
@ -27,7 +27,7 @@ typedef struct DebugLog_t DebugLog;
|
|||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
|
|
||||||
/** @ingroup ModSecurity_CPP_API */
|
/** @ingroup ModSecurity_CPP_API */
|
||||||
class DebugLog {
|
class DebugLog {
|
||||||
|
@ -17,7 +17,7 @@
|
|||||||
#define HEADERS_MODSECURITY_INTERVENTION_H_
|
#define HEADERS_MODSECURITY_INTERVENTION_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
typedef struct ModSecurityIntervention_t {
|
typedef struct ModSecurityIntervention_t {
|
||||||
|
@ -85,7 +85,7 @@
|
|||||||
|
|
||||||
|
|
||||||
#ifndef __cplusplus
|
#ifndef __cplusplus
|
||||||
typedef struct ModSecurity_t ModSecurity;
|
typedef struct ModSecurity_t modsecurity;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
@ -123,7 +123,7 @@ typedef struct ModSecurity_t ModSecurity;
|
|||||||
typedef void (*LogCb) (void *, const char *);
|
typedef void (*LogCb) (void *, const char *);
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
|
|
||||||
/* few forwarded declarations */
|
/* few forwarded declarations */
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -34,7 +34,7 @@
|
|||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Rule;
|
class Rule;
|
||||||
class AuditLog;
|
class AuditLog;
|
||||||
namespace Parser {
|
namespace Parser {
|
||||||
|
@ -30,7 +30,7 @@
|
|||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Rule;
|
class Rule;
|
||||||
class AuditLog;
|
class AuditLog;
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -26,7 +26,7 @@ typedef struct Collection_t Collection;
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
#include <string>
|
#include <string>
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
|
|
||||||
class Collection : public transaction::Variables {
|
class Collection : public transaction::Variables {
|
||||||
public:
|
public:
|
||||||
|
@ -39,7 +39,7 @@ typedef struct Variable_t Variable;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace transaction {
|
namespace transaction {
|
||||||
|
|
||||||
class Collections :
|
class Collections :
|
||||||
|
@ -28,7 +28,7 @@ typedef struct Variable_t Variable;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace transaction {
|
namespace transaction {
|
||||||
|
|
||||||
class Variable {
|
class Variable {
|
||||||
|
@ -33,7 +33,7 @@ typedef struct Variable_t Variables;
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace transaction {
|
namespace transaction {
|
||||||
|
|
||||||
class Variables :
|
class Variables :
|
||||||
|
@ -37,7 +37,7 @@
|
|||||||
#define IF_MATCH(a) \
|
#define IF_MATCH(a) \
|
||||||
if (op.compare(1, std::strlen(#a), #a) == 0)
|
if (op.compare(1, std::strlen(#a), #a) == 0)
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
class Rule;
|
class Rule;
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
#include "modsecurity/assay.h"
|
#include "modsecurity/assay.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
bool AuditLog::evaluate(Rule *rule, Assay *assay) {
|
bool AuditLog::evaluate(Rule *rule, Assay *assay) {
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#include "src/rule.h"
|
#include "src/rule.h"
|
||||||
#include "modsecurity/intervention.h"
|
#include "modsecurity/intervention.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
Block::Block(std::string action)
|
Block::Block(std::string action)
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
#include "operators/contains.h"
|
#include "operators/contains.h"
|
||||||
#include "operators/detect_sqli.h"
|
#include "operators/detect_sqli.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
bool Capture::evaluate(Rule *rule, Assay *assay) {
|
bool Capture::evaluate(Rule *rule, Assay *assay) {
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#define SRC_ACTIONS_CAPTURE_H_
|
#define SRC_ACTIONS_CAPTURE_H_
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Rule;
|
class Rule;
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#include "modsecurity/assay.h"
|
#include "modsecurity/assay.h"
|
||||||
#include "src/rule.h"
|
#include "src/rule.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
class Rule;
|
class Rule;
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
#include "modsecurity/assay.h"
|
#include "modsecurity/assay.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
CtlAuditLogParts::CtlAuditLogParts(std::string action)
|
CtlAuditLogParts::CtlAuditLogParts(std::string action)
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#ifndef SRC_ACTIONS_CTL_AUDIT_LOG_PARTS_H_
|
#ifndef SRC_ACTIONS_CTL_AUDIT_LOG_PARTS_H_
|
||||||
#define SRC_ACTIONS_CTL_AUDIT_LOG_PARTS_H_
|
#define SRC_ACTIONS_CTL_AUDIT_LOG_PARTS_H_
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
#include "modsecurity/assay.h"
|
#include "modsecurity/assay.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
Deny::Deny(std::string action)
|
Deny::Deny(std::string action)
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#ifndef SRC_ACTIONS_DENY_H_
|
#ifndef SRC_ACTIONS_DENY_H_
|
||||||
#define SRC_ACTIONS_DENY_H_
|
#define SRC_ACTIONS_DENY_H_
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
#include "modsecurity/assay.h"
|
#include "modsecurity/assay.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
bool Log::evaluate(Rule *rule, Assay *assay) {
|
bool Log::evaluate(Rule *rule, Assay *assay) {
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#include "src/utils.h"
|
#include "src/utils.h"
|
||||||
#include "src/macro_expansion.h"
|
#include "src/macro_expansion.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
LogData::LogData(std::string action)
|
LogData::LogData(std::string action)
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#include "src/utils.h"
|
#include "src/utils.h"
|
||||||
#include "src/macro_expansion.h"
|
#include "src/macro_expansion.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
Msg::Msg(std::string action)
|
Msg::Msg(std::string action)
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
#include "modsecurity/assay.h"
|
#include "modsecurity/assay.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
bool NoAuditLog::evaluate(Rule *rule, Assay *assay) {
|
bool NoAuditLog::evaluate(Rule *rule, Assay *assay) {
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#include "modsecurity/assay.h"
|
#include "modsecurity/assay.h"
|
||||||
#include "src/rule.h"
|
#include "src/rule.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
Pass::Pass(std::string action)
|
Pass::Pass(std::string action)
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#ifndef SRC_ACTIONS_PASS_H_
|
#ifndef SRC_ACTIONS_PASS_H_
|
||||||
#define SRC_ACTIONS_PASS_H_
|
#define SRC_ACTIONS_PASS_H_
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#include "src/utils.h"
|
#include "src/utils.h"
|
||||||
#include "modsecurity/modsecurity.h"
|
#include "modsecurity/modsecurity.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
Phase::Phase(std::string action)
|
Phase::Phase(std::string action)
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
class Rule;
|
class Rule;
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#include "modsecurity/assay.h"
|
#include "modsecurity/assay.h"
|
||||||
#include "src/macro_expansion.h"
|
#include "src/macro_expansion.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
Redirect::~Redirect() {
|
Redirect::~Redirect() {
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
#include "src/rule.h"
|
#include "src/rule.h"
|
||||||
#include "src/macro_expansion.h"
|
#include "src/macro_expansion.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
Rev::Rev(std::string action)
|
Rev::Rev(std::string action)
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
#include "modsecurity/assay.h"
|
#include "modsecurity/assay.h"
|
||||||
#include "src/rule.h"
|
#include "src/rule.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
bool RuleId::init(std::string *error) {
|
bool RuleId::init(std::string *error) {
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
class Rule;
|
class Rule;
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#include "src/macro_expansion.h"
|
#include "src/macro_expansion.h"
|
||||||
#include "src/utils.h"
|
#include "src/utils.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
SetVar::SetVar(std::string action)
|
SetVar::SetVar(std::string action)
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
#ifndef SRC_ACTIONS_SET_VAR_H_
|
#ifndef SRC_ACTIONS_SET_VAR_H_
|
||||||
#define SRC_ACTIONS_SET_VAR_H_
|
#define SRC_ACTIONS_SET_VAR_H_
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
class Rule;
|
class Rule;
|
||||||
|
|
||||||
@ -33,7 +33,7 @@ class SetVar : public Action {
|
|||||||
|
|
||||||
bool evaluate(Rule *rule, Assay *assay) override;
|
bool evaluate(Rule *rule, Assay *assay) override;
|
||||||
void dump();
|
void dump();
|
||||||
bool init(std::string *error);
|
bool init(std::string *error) override;
|
||||||
|
|
||||||
std::string collectionName;
|
std::string collectionName;
|
||||||
std::string variableName;
|
std::string variableName;
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#include "modsecurity/assay.h"
|
#include "modsecurity/assay.h"
|
||||||
#include "src/utils.h"
|
#include "src/utils.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
Severity::Severity(std::string action)
|
Severity::Severity(std::string action)
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#include "modsecurity/assay.h"
|
#include "modsecurity/assay.h"
|
||||||
#include "src/utils.h"
|
#include "src/utils.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
SkipAfter::SkipAfter(std::string action)
|
SkipAfter::SkipAfter(std::string action)
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
|
@ -20,7 +20,7 @@
|
|||||||
|
|
||||||
#include "modsecurity/assay.h"
|
#include "modsecurity/assay.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
Status::Status(std::string action)
|
Status::Status(std::string action)
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#include "src/utils.h"
|
#include "src/utils.h"
|
||||||
#include "src/macro_expansion.h"
|
#include "src/macro_expansion.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
Tag::Tag(std::string action)
|
Tag::Tag(std::string action)
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
|
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_BASE64_DECODE_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_BASE64_DECODE_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_BASE64_DECODE_EXT_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_BASE64_DECODE_EXT_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_CMD_LINE_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_CMD_LINE_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_COMPRESS_WHITESPACE_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_COMPRESS_WHITESPACE_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
#include "src/utils.h"
|
#include "src/utils.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_CSS_DECODE_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_CSS_DECODE_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
#include "src/utils.h"
|
#include "src/utils.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_ESCAPE_SEQ_DECODE_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_ESCAPE_SEQ_DECODE_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_HEX_DECODE_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_HEX_DECODE_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_HEX_ENCODE_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_HEX_ENCODE_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
#include "src/utils.h"
|
#include "src/utils.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -23,7 +23,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_HTML_ENTITY_DECODE_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_HTML_ENTITY_DECODE_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
#include "src/utils.h"
|
#include "src/utils.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_JS_DECODE_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_JS_DECODE_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_LENGTH_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_LENGTH_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
#include "actions/action.h"
|
#include "actions/action.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -24,7 +24,7 @@
|
|||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_MD5_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_MD5_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_NONE_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_NONE_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
#include "src/utils.h"
|
#include "src/utils.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_NORMALISE_PATH_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_NORMALISE_PATH_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -29,7 +29,7 @@
|
|||||||
#include "src/utils.h"
|
#include "src/utils.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_NORMALISE_PATH_WIN_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_NORMALISE_PATH_WIN_H_
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_PARITY_EVEN_7BIT_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_PARITY_EVEN_7BIT_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_PARITY_ODD_7BIT_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_PARITY_ODD_7BIT_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_PARITY_ZERO_7BIT_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_PARITY_ZERO_7BIT_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_REMOVE_COMMENTS_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_REMOVE_COMMENTS_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_REMOVE_COMMENTS_CHAR_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_REMOVE_COMMENTS_CHAR_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -28,7 +28,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
#include "src/utils.h"
|
#include "src/utils.h"
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_REMOVE_NULLS_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_REMOVE_NULLS_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -26,7 +26,7 @@
|
|||||||
#include "actions/transformations/transformation.h"
|
#include "actions/transformations/transformation.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_REMOVE_WHITESPACE_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_REMOVE_WHITESPACE_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
@ -27,7 +27,7 @@
|
|||||||
#include "src/utils.h"
|
#include "src/utils.h"
|
||||||
|
|
||||||
|
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
namespace actions {
|
namespace actions {
|
||||||
namespace transformations {
|
namespace transformations {
|
||||||
|
|
||||||
|
@ -22,7 +22,7 @@
|
|||||||
#define SRC_ACTIONS_TRANSFORMATIONS_REPLACE_COMMENTS_H_
|
#define SRC_ACTIONS_TRANSFORMATIONS_REPLACE_COMMENTS_H_
|
||||||
|
|
||||||
#ifdef __cplusplus
|
#ifdef __cplusplus
|
||||||
namespace ModSecurity {
|
namespace modsecurity {
|
||||||
class Assay;
|
class Assay;
|
||||||
|
|
||||||
namespace actions {
|
namespace actions {
|
||||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user