]> git.mxchange.org Git - fba.git/blob - fba/helpers/blacklist.py
0a74eb1f6d8d0ba53a3855422f0cb001a299207d
[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     # Similar troll
29     "gab.best",
30     # Similar troll
31     "4chan.icu",
32     # Flooder (?)
33     "social.shrimpcam.pw",
34     # Flooder (?)
35     "mastotroll.netz.org",
36     # Testing/developing installations
37     "ngrok.io",
38     "ngrok-free.app",
39     "misskeytest.chn.moe",
40     # block flooder
41     "everyoneattack.com",
42     # responds with very long reply
43     "grossard.fr",
44 ]
45
46 def is_blacklisted(domain: str) -> bool:
47     logger.debug("domain(%d)='%s' - CALLED!", len(domain), domain)
48     domain_helper.raise_on(domain)
49
50     blacklisted = False
51     for peer in blacklist:
52         logger.debug(f"Checking peer='{peer}' ...")
53         if peer in domain:
54             logger.debug(f"domain='{domain}' is blacklisted.")
55             blacklisted = True
56
57     logger.debug(f"blacklisted='{blacklisted}' - EXIT!")
58     return blacklisted