We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 44d1860 commit e55aeabCopy full SHA for e55aeab
bin/modules/CEDetector.py
@@ -71,7 +71,6 @@ def compute(self, message): # TODO LIMIT TO DARKWEB ???
71
words = set(words)
72
73
for word in words:
74
- print(word)
75
if word in self.csam_words:
76
is_csam = True
77
if word in self.child_worlds:
@@ -111,7 +110,18 @@ def test_detection():
111
110
is_detected = True
112
if not is_detected:
113
not_detected.add(domain)
114
- print(not_detected)
+
+ print()
115
116
117
118
+ for domain in not_detected:
119
+ dom = Domain(domain)
120
+ print('-----------', domain)
121
+ for h in dom.get_correlation('title').get('title', []):
122
+ print(Title(h[1:]).get_content().lower())
123
124
125
126
127
if __name__ == "__main__":
0 commit comments