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 f694c5d commit 2fc4fddCopy full SHA for 2fc4fdd
bin/lib/crawlers.py
@@ -115,9 +115,12 @@ def api_get_onion_lookup(domain): # TODO check if object process done ???
115
del meta['type']
116
del meta['status']
117
meta['titles'] = []
118
- for h in dom.get_correlation('title').get('title', []):
119
- t = Titles.Title(h[1:])
120
- meta['titles'].append(t.get_content())
+ if not Tag.is_tags_safe(tags):
+ meta['titles'].append("Redacted")
+ else:
121
+ for h in dom.get_correlation('title').get('title', []):
122
+ t = Titles.Title(h[1:])
123
+ meta['titles'].append(t.get_content())
124
return meta
125
126
def api_get_domain_from_url(url):
0 commit comments