Adds new operator to check for data leakage of Austrian social security number

This commit is contained in:
Rufus125
2019-03-27 15:14:57 +01:00
committed by Felipe Zimmerle
parent 6d266fae85
commit 86ce479b59
11 changed files with 7376 additions and 7105 deletions

View File

@@ -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) {

View File

@@ -0,0 +1,123 @@
#include "src/operators/verify_svnr.h"
#include <string>
#include "src/operators/operator.h"
#include "modsecurity/rule.h"
#include "modsecurity/rule_message.h"
#include "modsecurity/rules_properties.h"
namespace modsecurity {
namespace operators {
int VerifySVNR::convert_to_int(const char c)
{
int n;
if ((c>='0') && (c<='9'))
n = c - '0';
else
n = 0;
return n;
}
bool VerifySVNR::verify(const char *svnrnumber, int len) {
int var_len = len;
int sum = 0;
unsigned int i = 0, svnr_len = 10;
int svnr[11];
char s_svnr[11];
char bad_svnr[12][11] = { "0000000000",
"0123456789",
"1234567890",
"1111111111",
"2222222222",
"3333333333",
"4444444444",
"5555555555",
"6666666666",
"7777777777",
"8888888888",
"9999999999"};
while ((*svnrnumber != '\0') && ( var_len > 0))
{
if (*svnrnumber != '-' || *svnrnumber != '.')
{
if (i < svnr_len && isdigit(*svnrnumber))
{
s_svnr[i] = *svnrnumber;
svnr[i] = convert_to_int(*svnrnumber);
i++;
}
}
svnrnumber++;
var_len--;
}
if (i != svnr_len)
{
return 0;
}
else
{
for (i = 0; i< svnr_len; i++)
{
if (strncmp(s_svnr,bad_svnr[i],svnr_len) == 0)
{
return 0;
}
}
}
//Laufnummer mit 3, 7, 9
//Geburtsdatum mit 5, 8, 4, 2, 1, 6
sum = svnr[0] * 3 + svnr[1] * 7 + svnr[2] * 9 + svnr[4] * 5 + svnr[5] * 8 + svnr[6] * 4 + svnr[7] * 2 + svnr[8] * 1 + svnr[9] * 6;
sum %= 11;
if(sum == 10){
sum = 0;
}
if (sum == svnr[3])
{
return true;
}
return false;
}
bool VerifySVNR::evaluate(Transaction *t, Rule *rule,
const std::string& input, std::shared_ptr<RuleMessage> ruleMessage) {
std::list<SMatch> matches;
bool is_svnr = false;
int i;
if (m_param.empty()) {
return is_svnr;
}
for (i = 0; i < input.size() - 1 && is_svnr == false; i++) {
matches = m_re->searchAll(input.substr(i, input.size()));
for (const auto & i : matches) {
is_svnr = verify(i.str().c_str(), i.str().size());
if (is_svnr) {
logOffset(ruleMessage, i.offset(), i.str().size());
if (rule && t && rule->m_containsCaptureAction) {
t->m_collections.m_tx_collection->storeOrUpdateFirst(
"0", i.str());
ms_dbg_a(t, 7, "Added VerifySVNR match TX.0: " + \
i.str());
}
goto out;
}
}
}
out:
return is_svnr;
}
} // namespace operators
} // namespace modsecurity

View File

@@ -0,0 +1,55 @@
#ifndef SRC_OPERATORS_VERIFY_SVNR_H_
#define SRC_OPERATORS_VERIFY_SVNR_H_
#include <string>
#include <memory>
#include <utility>
#include "src/operators/operator.h"
#include "src/utils/regex.h"
namespace modsecurity {
using Utils::SMatch;
using Utils::regex_search;
using Utils::Regex;
namespace operators {
class VerifySVNR : public Operator {
public:
/** @ingroup ModSecurity_Operator */
explicit VerifySVNR(std::unique_ptr<RunTimeString> param)
: Operator("VerifySVNR", std::move(param)) {
m_re = new Regex(m_param);
}
~VerifySVNR() {
delete m_re;
}
bool evaluate(Transaction *transaction, Rule *rule,
const std::string &input) override {
return evaluate(transaction, NULL, input, NULL);
}
bool evaluate(Transaction *transaction,
const std::string &input) override {
return evaluate(transaction, NULL, input);
}
bool evaluate(Transaction *transaction, Rule *rule,
const std::string& input,
std::shared_ptr<RuleMessage> ruleMessage) override;
int convert_to_int(const char c);
bool verify(const char *ssnumber, int len);
private:
Regex *m_re;
};
} // namespace operators
} // namespace modsecurity
#endif // SRC_OPERATORS_VERIFY_SVNR_H_