Skip to content

Commit e55cd9f

Browse files
authored
Merge branch 'owasp-modsecurity:v3/master' into v3/remove_this_throw_call_transaction_h
2 parents a35e201 + 07e5a70 commit e55cd9f

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.gitmodules

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
[submodule "test/test-cases/secrules-language-tests"]
22
path = test/test-cases/secrules-language-tests
3-
url = https://github.com/SpiderLabs/secrules-language-tests
3+
url = https://github.com/owasp-modsecurity/secrules-language-tests
44
[submodule "others/libinjection"]
55
path = others/libinjection
66
url = https://github.com/libinjection/libinjection.git
77
[submodule "bindings/python"]
88
path = bindings/python
9-
url = https://github.com/SpiderLabs/ModSecurity-Python-bindings.git
9+
url = https://github.com/owasp-modsecurity/ModSecurity-Python-bindings.git

src/operators/rbl.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -71,9 +71,9 @@ class Rbl : public Operator {
7171
m_demandsPassword = true;
7272
m_provider = RblProvider::httpbl;
7373
} else if (m_service.find("uribl.com") != std::string::npos) {
74-
m_provider = RblProvider::httpbl;
74+
m_provider = RblProvider::uribl;
7575
} else if (m_service.find("spamhaus.org") != std::string::npos) {
76-
m_provider = RblProvider::httpbl;
76+
m_provider = RblProvider::spamhaus;
7777
}
7878
}
7979
bool evaluate(Transaction *transaction, RuleWithActions *rule,

0 commit comments

Comments
 (0)