mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-11-16 17:41:52 +03:00
Adds new operator to check for data leakage of Austrian social security number
This commit is contained in:
committed by
Felipe Zimmerle
parent
6d266fae85
commit
86ce479b59
@@ -58,6 +58,7 @@
|
||||
#include "src/operators/verify_cc.h"
|
||||
#include "src/operators/verify_cpf.h"
|
||||
#include "src/operators/verify_ssn.h"
|
||||
#include "src/operators/verify_svnr.h"
|
||||
#include "src/operators/within.h"
|
||||
#include "src/operators/unconditional_match.h"
|
||||
|
||||
@@ -185,6 +186,7 @@ Operator *Operator::instantiate(std::string op, std::string param_str) {
|
||||
IF_MATCH(verifycc) { return new VerifyCC(std::move(param)); }
|
||||
IF_MATCH(verifycpf) { return new VerifyCPF(std::move(param)); }
|
||||
IF_MATCH(verifyssn) { return new VerifySSN(std::move(param)); }
|
||||
IF_MATCH(verifysvnr) { return new VerifySVNR(std::move(param)); }
|
||||
IF_MATCH(within) { return new Within(std::move(param)); }
|
||||
|
||||
IF_MATCH(unconditionalmatch) {
|
||||
|
||||
Reference in New Issue
Block a user