]> 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     # Floods federation with fake nodes as "research" project
27     "activitypub-troll.cf",
28     "activitypub-proxy.cf",
29     # Similar troll
30     "gab.best",
31     # Similar troll
32     "4chan.icu",
33     # Flooder (?)
34     "social.shrimpcam.pw",
35     "mastotroll.netz.org",
36     "lhr.life",
37     "localhost.run",
38     "loca.lt",
39     # Testing/developing installations
40     "ngrok.io",
41     "ngrok-free.app",
42     "misskeytest.chn.moe",
43     "netlify.app",
44     # block flooder
45     "everyoneattack.com",
46     # CSRF
47     "hexbear.net", # See script in /instances
48 ]
49
50 def is_blacklisted(domain: str) -> bool:
51     logger.debug("domain='%s' - CALLED!", domain)
52     domain_helper.raise_on(domain)
53
54     blacklisted = False
55     logger.debug("Checking %d blacklist entries ...", len(blacklist))
56     for peer in blacklist:
57         logger.debug("Checking peer='%s' ...", peer)
58         if peer in domain:
59             logger.debug("domain='%s' is blacklisted.", domain)
60             blacklisted = True
61
62     logger.debug("blacklisted='%s' - EXIT!", blacklisted)
63     return blacklisted