]> 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 #logger.setLevel(logging.DEBUG)
24
25 # Don't check these, known trolls/flooders/testing/developing
26 _blacklist = {
27     "activitypub-troll.cf": "Floods federation with fake nodes as \"research\" project",
28     "activitypub-proxy.cf": "Floods federation with fake nodes as \"research\" project",
29     "misskey-forkbomb.cf" : "Floods federation tables with fake nodes",
30     "gab.best"            : "Floods federation tables with fake nodes",
31     "4chan.icu"           : "Floods federation tables with fake nodes",
32     "social.shrimpcam.pw" : "Floods federation tables with fake nodes",
33     "mastotroll.netz.org" : "Floods federation tables with fake nodes",
34     "lhr.life"            : "Floods federation tables with fake nodes",
35     "localhost.run"       : "Floods federation tables with fake nodes",
36     "loca.lt"             : "Floods federation tables with fake nodes",
37     "grid.tf"             : "Floods federation tables with fake nodes",
38     "gitpod.io"           : "Floods federation tables with fake nodes",
39     "everyoneattack.com"  : "Floods federation tables with fake nodes",
40     "vercel.app"          : "Floods federation tables with fake nodes",
41     "run.app"             : "Floods federation tables with fake nodes",
42     "denden.world"        : "Looks like a valid Mastodon instance, but return exactly (!) 5k instances with trash domains",
43     "fnaf.stream"         : "Trolls with over-long sub-domain name(s)",
44     "ngrok.io"            : "Testing/developing instances shouldn't be part of public instances",
45     "ngrok.app"           : "Testing/developing instances shouldn't be part of public instances",
46     "ngrok-free.app"      : "Testing/developing instances shouldn't be part of public instances",
47     "misskeytest.chn.moe" : "Testing/developing instances shouldn't be part of public instances",
48     "netlify.app"         : "Testing/developing instances shouldn't be part of public instances",
49     "ignorelist.com"      : "Testing/developing instances shouldn't be part of public instances",
50     "app.github.dev"      : "Testing/developing instances shouldn't be part of public instances",
51     "hexbear.net"         : "Is a Lemmy instance with malicious JavaScript code (shell commands)",
52 }
53
54 def is_blacklisted(domain: str) -> bool:
55     logger.debug("domain='%s' - CALLED!", domain)
56     domain_helper.raise_on(domain)
57
58     blacklisted = False
59     logger.debug("Checking %d blacklist entries ...", len(_blacklist))
60     for blocked in _blacklist:
61         logger.debug("Checking blocked='%s' ...", blocked)
62         if blocked in domain:
63             logger.debug("domain='%s' is blacklisted.", domain)
64             blacklisted = True
65             break
66
67     logger.debug("blacklisted='%s' - EXIT!", blacklisted)
68     return blacklisted
69
70 def get_all() -> dict:
71     logger.debug("_blacklist()=%d - CALLED!", len(_blacklist))
72     return _blacklist