mirror of
https://github.com/owasp-modsecurity/ModSecurity.git
synced 2025-08-14 05:45:59 +03:00
fix(rbl): typo in rbl check selector
Signed-off-by: Felipe Zipitria <felipe.zipitria@owasp.org>
This commit is contained in:
parent
625f9a5300
commit
30fe6f935b
@ -71,9 +71,9 @@ class Rbl : public Operator {
|
|||||||
m_demandsPassword = true;
|
m_demandsPassword = true;
|
||||||
m_provider = RblProvider::httpbl;
|
m_provider = RblProvider::httpbl;
|
||||||
} else if (m_service.find("uribl.com") != std::string::npos) {
|
} else if (m_service.find("uribl.com") != std::string::npos) {
|
||||||
m_provider = RblProvider::httpbl;
|
m_provider = RblProvider::uribl;
|
||||||
} else if (m_service.find("spamhaus.org") != std::string::npos) {
|
} else if (m_service.find("spamhaus.org") != std::string::npos) {
|
||||||
m_provider = RblProvider::httpbl;
|
m_provider = RblProvider::spamhaus;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
bool evaluate(Transaction *transaction, RuleWithActions *rule,
|
bool evaluate(Transaction *transaction, RuleWithActions *rule,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user