]> git.mxchange.org Git - fba.git/blob - fba/helpers/blacklist.py
Continued:
[fba.git] / fba / helpers / blacklist.py
1 # Fedi API Block - An aggregator for fetching blocking data from fediverse nodes
2 # Copyright (C) 2023 Free Software Foundation
3 #
4 # This program is free software: you can redistribute it and/or modify
5 # it under the terms of the GNU Affero General Public License as published
6 # by the Free Software Foundation, either version 3 of the License, or
7 # (at your option) any later version.
8 #
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU Affero General Public License for more details.
13 #
14 # You should have received a copy of the GNU Affero General Public License
15 # along with this program.  If not, see <https://www.gnu.org/licenses/>.
16
17 import logging
18
19 from fba.helpers import domain as domain_helper
20
21 logging.basicConfig(level=logging.INFO)
22 logger = logging.getLogger(__name__)
23
24 # Don't check these, known trolls/flooders/testing/developing
25 _blacklist = {
26     "activitypub-troll.cf": "Floods federation with fake nodes as \"research\" project",
27     "activitypub-proxy.cf": "Floods federation with fake nodes as \"research\" project",
28     "gab.best"            : "Floods federation tables with fake nodes",
29     "4chan.icu"           : "Floods federation tables with fake nodes",
30     "social.shrimpcam.pw" : "Floods federation tables with fake nodes",
31     "mastotroll.netz.org" : "Floods federation tables with fake nodes",
32     "lhr.life"            : "Floods federation tables with fake nodes",
33     "localhost.run"       : "Floods federation tables with fake nodes",
34     "loca.lt"             : "Floods federation tables with fake nodes",
35     "ngrok.io"            : "Testing/developing instances shouldn't be part of public instances",
36     "ngrok.app"           : "Testing/developing instances shouldn't be part of public instances",
37     "ngrok-free.app"      : "Testing/developing instances shouldn't be part of public instances",
38     "misskeytest.chn.moe" : "Testing/developing instances shouldn't be part of public instances",
39     "netlify.app"         : "Testing/developing instances shouldn't be part of public instances",
40     "everyoneattack.com"  : "Floods federation tables with fake nodes",
41     "hexbear.net"         : "Is a Lemmy instance with malicious JavaScript code (shell commands)",
42 }
43
44 def is_blacklisted(domain: str) -> bool:
45     logger.debug("domain='%s' - CALLED!", domain)
46     domain_helper.raise_on(domain)
47
48     blacklisted = False
49     logger.debug("Checking %d blacklist entries ...", len(_blacklist))
50     for blocked in _blacklist:
51         logger.debug("Checking blocked='%s' ...", blocked)
52         if blocked in domain:
53             logger.debug("domain='%s' is blacklisted.", domain)
54             blacklisted = True
55
56     logger.debug("blacklisted='%s' - EXIT!", blacklisted)
57     return blacklisted
58
59 def get_all() -> dict:
60     logger.debug("_blacklist()=%d - CALLED!", len(_blacklist))
61     return _blacklist