Update fediverse.py

This commit is contained in:
Namhyeon Go 2024-10-09 03:08:47 +09:00 committed by GitHub
parent 56c8c62aa6
commit a376b8084d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -75,6 +75,7 @@ class Fediverse(Extension):
# check if the text contains any of the bad domains # check if the text contains any of the bad domains
if bool(re.search(r"https://(" + "|".join(re.escape(domain) for domain in bad_domains) + ")", text)): if bool(re.search(r"https://(" + "|".join(re.escape(domain) for domain in bad_domains) + ")", text)):
logger.warning("[*] Found a bad reputation domain")
return True return True
# check ID with K-Anonymity strategy # check ID with K-Anonymity strategy