├── .gitignore ├── LICENSE ├── README.md ├── RUNNING.md ├── blocklists ├── README.md ├── __allowlist.csv ├── _unified_tier0_blocklist.csv ├── dni.csv ├── gardenfence.csv ├── mastodon.online.csv ├── mastodon.social.csv ├── mastodon │ ├── README.md │ ├── _unified_tier0_blocklist.csv │ ├── dni.csv │ ├── gardenfence.csv │ ├── mastodon.online.csv │ ├── mastodon.social.csv │ └── seirdy-tier0.csv ├── other │ └── missing-tier0-mastodon.social.csv └── seirdy-tier0.csv ├── config ├── example-server-export.conf.toml ├── pull.conf.toml └── tier0.conf.toml ├── exports └── .gitignore ├── fedisync-example-server.sh ├── fedisync-git.sh ├── fedisync-push.sh ├── fedisync.sh └── logs └── .gitignore /.gitignore: -------------------------------------------------------------------------------- 1 | # used for local secrets and modifications to scripts 2 | secretconfig/** 3 | local/** 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- 1 | This is free and unencumbered software released into the public domain. 2 | 3 | Anyone is free to copy, modify, publish, use, compile, sell, or 4 | distribute this software, either in source code form or as a compiled 5 | binary, for any purpose, commercial or non-commercial, and by any 6 | means. 7 | 8 | In jurisdictions that recognize copyright laws, the author or authors 9 | of this software dedicate any and all copyright interest in the 10 | software to the public domain. We make this dedication for the benefit 11 | of the public at large and to the detriment of our heirs and 12 | successors. We intend this dedication to be an overt act of 13 | relinquishment in perpetuity of all present and future rights to this 14 | software under copyright law. 15 | 16 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, 17 | EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF 18 | MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. 19 | IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR 20 | OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, 21 | ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR 22 | OTHER DEALINGS IN THE SOFTWARE. 23 | 24 | For more information, please refer to 25 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Oliphant.Social Shared Blocklist Files 2 | 3 | **Now an aggregator** 4 | 5 | This repo is now producing only an aggregated Tier 0 file as a combination of Seirdy's Tier 0, Gardenfence, and the IFTAS DNI list. Other high-consensus or curated "tier 0" files might be added in the future. 6 | 7 | Note that there is no longer any kind of threshold algorithm or trusted council involved: that is handled by the source lists themselves, each of which provide their own high threshold for consensus. 8 | 9 | --- 10 | 11 | See `RUNNING.md` for more information on running the scripts in this repo to generate these blocklists yourself, to modify the sources, or push the blocks to a server you control. You are encouraged to fork this repo, create your own versions of these scripts, and push up your own blocklist files, or use this simply to keep a server in sync with blocklist updates. 12 | 13 | This folder contains scripts to generate the blocklist files. See the `blocklists` folder for blocklist files. 14 | 15 | For more information, please check out some blog entries: 16 | 17 | * [How to Sync Up Blocklist Changes From Trusted Sources](https://writer.oliphant.social/oliphant/how-to-sync-up-blocklist-changes-from-trusted-sources) 18 | A step-by-step tutorial on how to install FediBlockHole yourself and start pulling down blocklists and applying them to your server. 19 | * [Blocklists](https://writer.oliphant.social/oliphant/blocklists) 20 | Several thousand words about blocklists and defederation. 21 | 22 | Blocklists are dual hosted at: 23 | 24 | * https://github.com/sgrigson/oliphant 25 | * https://codeberg.org/oliphant/oliphant 26 | 27 | 28 | If you're pulling down the repo instead of downloading files directly, you can use `git remote set-url` to switch locations if needed. 29 | 30 | ## How Often are the Lists Updated? 31 | 32 | On the hour, every hour, so long as there have been changes from one of the blocklist sources. 33 | 34 | ## Fair Use and Context for Blocklists 35 | 36 | Blocklists are provided in the public interest and for server admins who maintain a legitimate interest in performing the normal daily operation of their server, which includes [active moderation](https://joinmastodon.org/covenant), review of potential sources of harm or even just places viewed with caution due to unsafe or lax moderation practices. 37 | 38 | Everyone argues about where to draw this line. That's the whole point of providing multiple sources here (and I'll provide others if they opt in). Ideally, you will pull in a blocklist from other sources you trust. That may be one of these sources, a merged version of the different lists, or you may use it for reference. 39 | 40 | There are several non-standard use cases as well: 41 | 42 | * “Hmm...I’m on the fence about this domain. Oh look, it’s in this blocklist too; let me ask them about it.” 43 | * “I’ve imported a large blocklist, but I’m unsure about some entries. They’re tier-3 entries but not tier-2 or tier-1; I think I’ll downgrade them from suspend to something less severe.” 44 | * “Someone sent me a follow-request, and I see they’re a new user from a tier-zero domain; I think I’ll decline.” 45 | 46 | Ultimately, how a list is used is up to you. 47 | 48 | It's assumed you're a rational person and can deal with what we hope are small disagreements with some of the entries on the list. 49 | 50 | It's also assumed you're capable of *not importing certain lines* or just editing the file as necessary. Use it as a basis to create your shared blocklist file. 51 | 52 | Or... decide you do not want to use it at all. 53 | 54 | -------------------------------------------------------------------------------- /RUNNING.md: -------------------------------------------------------------------------------- 1 | # Running the Blocklists 2 | 3 | 1. Setup Fediblockhole 4 | ```bash 5 | python3 -m pip install fediblockhole 6 | ``` 7 | 8 | 2. Clone this Repo 9 | ```bash 10 | git clone https://codeberg.org/oliphant/blocklists.git /opt/fediblockhole 11 | # optional: create folders for local scripts and secret config 12 | # mkdir /opt/fediblockhole/local && mkdir /opt/fediblockhole/secretconfig 13 | ``` 14 | 15 | 3. Execute 16 | `/opt/fediblockhole/fedisync.sh` 17 | 18 | That's it. Blocklists will be written to the `blocklists` folder. 19 | 20 | You can use `local` and `secretconfig` as subfolders that aren't tracked by git to create your own versions of these scripts and config. 21 | 22 | 4. Optional 23 | `./fedisync-push.sh` 24 | This will sync up a specified blocklist (any blocklist you want) to a specified destination. This is not required to generate blocklists. 25 | 26 | For more information on how to configure the push file, or a greater explanation of the fundamentals of this process, see [How to Sync up Blocklist Changes From Trusted Sources](https://writer.oliphant.social/oliphant/how-to-sync-up-blocklist-changes-from-trusted-sources). 27 | 28 | 29 | --- 30 | 31 | ## Configuration 32 | 33 | The list of blocklist sources can be found in the [/config/pull.conf.toml](/oliphant/blocklists/src/branch/main/config/pull.conf.toml). 34 | 35 | These initial sources are pulled down, with each of them being saved as an intermediate file. 36 | 37 | > Note: If you want to include the public_description, modify the [/config/pull.all.conf.toml](/oliphant/blocklists/src/branch/main/config/pull.all.conf.toml) file. 38 | 39 | The `fedisync.sh` script renames each of these source lists to a more friendly name (like mastodon.social.csv) 40 | 41 | The remaining steps are performed on these sourcefiles, not pulled from urls. 42 | 43 | If you customize the list of sources in `pull.conf.toml` or `pull.all.conf.toml` you should also update them in the various `config/*.conf.toml` files as needed. 44 | 45 | You will likely also need to customize the `fedisync.sh` to your needs as well if you make these changes. 46 | 47 | ## Generate files with descriptions 48 | 49 | Edit the `fedisync.sh` file, and where you see as follows: 50 | 51 | ``` 52 | PULLCONFIG="/opt/fediblockhole/config/pull.conf.toml" # default, pull sources WITHOUT public_description 53 | #PULLCONFIG="/opt/fediblockhole/config/pull.all.conf.toml" # pull down all sources WITH public_description 54 | ``` 55 | 56 | Comment out the first line and uncomment the second. Then run `fedisync.sh` as normal. The resulting files will have public_comment populated. 57 | 58 | Alternately, edit `pull.conf.toml` as follows to uncomment the 'public_comment' row: 59 | 60 | ``` 61 | #import_fields = ['reject_media', 'reject_reports', 'obfuscate'] 62 | import_fields = ['public_comment', 'reject_media', 'reject_reports', 'obfuscate'] 63 | ``` 64 | 65 | ## Pushing to Your Own Server 66 | If you want to push these blocks to your own server, that's an option, too. 67 | 68 | An example of this is in `fedisync-push.sh`. You can copy it to `/local/fedisync-push.sh` and modify it. If you want to push to a git repo, that references `fedisync-git.sh`. If you want to automatically sync a merged or list to your own server, the `fedisync-example-server.sh` script should be modified for your use. 69 | 70 | You will need a [very permissive API key](https://writer.oliphant.social/oliphant/how-to-sync-up-blocklist-changes-from-trusted-sources#generate-an-admin-api-token) created for your server to allow the push script to talk to it. 71 | 72 | By default, this is configured to downgrade any suspensions to silence while there are follow relationships on your server against a given block. 73 | 74 | Note that `fedisync-push.sh` won't push to any servers at all until you update the API key and the configuration for it. 75 | -------------------------------------------------------------------------------- /blocklists/README.md: -------------------------------------------------------------------------------- 1 | # Blocklist Index 2 | 3 | **NOTE:** If importing these files for Mastodon, be sure to use the files in the `mastodon` folder. 4 | 5 | * `_unified_tier0_blocklist.csv` - Combines blocks from all T0 sources (Seirdy, Gardenfence, IFTAS DNI) into a unified Tier 0 file. 6 | * `seirdy-tier0.csv` - The original Tier0 file. Algorithmic *and* curated. See Seirdy's [Fediverse Blocklists](https://seirdy.one/posts/2023/05/02/fediverse-blocklists/) for notes about the process behind creating it. 7 | * `gardenfence.csv` - A mirror of the [Gardenfence](https://gardenfence.github.io/) Tier 0 file. 8 | * `dni.csv` - IFTAS Do Not Interact (DNI). 9 | 10 | **Subfolders:** 11 | 12 | * `mastodon` - identical blocklist data, but with proper mastodon headers in format `#domain,#severity...` etc. 13 | -------------------------------------------------------------------------------- /blocklists/__allowlist.csv: -------------------------------------------------------------------------------- 1 | domain, 2 | 000this.is.generated.from.overlap.across.trusted.sources.example.com, 3 | 000delete.this.line.if.you.have.read.the.documentation.on.seirdy.one, 4 | canary.tier0.example.com, 5 | canary.tier1.example.com, 6 | canary.fedinuke.example.com, 7 | -------------------------------------------------------------------------------- /blocklists/dni.csv: -------------------------------------------------------------------------------- 1 | #domain,#severity,#reject_media,#reject_reports,#public_comment,#obfuscate 2 | 13bells.com,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment,TRUE 3 | 1611.social,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment,TRUE 4 | 9yo.punipoka.pink,suspend,FALSE,FALSE,iftas:csam,TRUE 5 | activitypub-proxy.cf,suspend,FALSE,FALSE,iftas:service-abuse,TRUE 6 | activitypub-troll.cf,suspend,FALSE,FALSE,iftas:service-abuse,TRUE 7 | aethy.com,suspend,FALSE,FALSE,iftas:csam,TRUE 8 | ap.invalid,suspend,FALSE,FALSE,iftas:canary,TRUE 9 | bae.st,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment,TRUE 10 | baraag.net,suspend,FALSE,FALSE,iftas:csam,TRUE 11 | beefyboys.win,suspend,FALSE,FALSE,iftas:hate-speech,TRUE 12 | boymoder.biz,suspend,FALSE,FALSE,iftas:online-harassment,TRUE 13 | brighteon.social,suspend,FALSE,FALSE,iftas:disinformation,TRUE 14 | cawfee.club,suspend,FALSE,FALSE,iftas:csam,TRUE 15 | childlove.space,suspend,FALSE,FALSE,iftas:csam,TRUE 16 | childlove.su,suspend,FALSE,FALSE,iftas:csam,TRUE 17 | clew.lol,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment,TRUE 18 | cottoncandy.cafe,suspend,FALSE,FALSE,iftas:csam,TRUE 19 | cum.salon,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment;explicit-content,TRUE 20 | cunnyborea.space,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment;explicit-content,TRUE 21 | cunnyborea.top,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment;explicit-content,TRUE 22 | detroitriotcity.com,suspend,FALSE,FALSE,iftas:hate-speech;brigading;online-harassment,TRUE 23 | eientei.org,suspend,FALSE,FALSE,iftas:hate-speech,TRUE 24 | eveningzoo.club,suspend,FALSE,FALSE,iftas:hate-speech;disinformation,TRUE 25 | freeatlantis.com,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment;disinformation,TRUE 26 | freecumextremist.com,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment;explicit-content,TRUE 27 | freespeechextremist.com,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment;disinformation,TRUE 28 | gameliberty.club,suspend,FALSE,FALSE,iftas:csam;explicit-content,TRUE 29 | gegenstimme.tv,suspend,FALSE,FALSE,iftas:hate-speech;disinformation,TRUE 30 | glee.li,suspend,FALSE,FALSE,iftas:troll;online-harassment,TRUE 31 | h5q.net,suspend,FALSE,FALSE,iftas:csam,TRUE 32 | hentai.baby,suspend,FALSE,FALSE,iftas:csam,TRUE 33 | imouto.exposed,suspend,FALSE,FALSE,iftas:csam,TRUE 34 | imouto.pics,suspend,FALSE,FALSE,iftas:csam,TRUE 35 | kbin.cafe,suspend,FALSE,FALSE,iftas:csam,TRUE 36 | kiwifarms.cc,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment,TRUE 37 | kiwifarms.is,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment,TRUE 38 | loli.church,suspend,FALSE,FALSE,iftas:csam,TRUE 39 | lolicon.rocks,suspend,FALSE,FALSE,iftas:csam,TRUE 40 | lolison.network,suspend,FALSE,FALSE,iftas:csam,TRUE 41 | mast-serv.site,suspend,FALSE,FALSE,iftas:spam;coordinated-inauthentic-behaviour,TRUE 42 | mastinator.com,suspend,FALSE,FALSE,iftas:service-abuse,TRUE 43 | misskey-forkbomb.cf,suspend,FALSE,FALSE,iftas:service-abuse,TRUE 44 | natehiggers.online,suspend,FALSE,FALSE,iftas:troll;online-harassment,TRUE 45 | neomobius.com,suspend,FALSE,FALSE,iftas:csam,TRUE 46 | nicecrew.digital,suspend,FALSE,FALSE,iftas:hate-speech;brigading;online-harassment,TRUE 47 | obo.sh,suspend,FALSE,FALSE,iftas:csam,TRUE 48 | pawoo.net,suspend,FALSE,FALSE,iftas:csam,TRUE 49 | pedo.school,suspend,FALSE,FALSE,iftas:csam,TRUE 50 | pettanko.art,suspend,FALSE,FALSE,iftas:csam,TRUE 51 | pieville.net,suspend,FALSE,FALSE,iftas:hate-speech,TRUE 52 | poa.st,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment,TRUE 53 | poast.org,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment,TRUE 54 | poast.tv,suspend,FALSE,FALSE,iftas:tvec,TRUE 55 | poster.place,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment,TRUE 56 | rapemeat.express,suspend,FALSE,FALSE,iftas:troll;online-harassment,TRUE 57 | rapemeat.solutions,suspend,FALSE,FALSE,iftas:troll;online-harassment,TRUE 58 | rdrama.cc,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment,TRUE 59 | repl.co,suspend,FALSE,FALSE,iftas:service-abuse;spam,TRUE 60 | ryona.agency,suspend,FALSE,FALSE,iftas:troll;online-harassment,TRUE 61 | ryona.agency,suspend,FALSE,FALSE,iftas:troll;online-harassment,TRUE 62 | seal.cafe,suspend,FALSE,FALSE,iftas:troll;online-harassment,TRUE 63 | seda.social,suspend,FALSE,FALSE,iftas:spam,TRUE 64 | shitpost.cloud,suspend,FALSE,FALSE,iftas:hate-speech;online-harassment,TRUE 65 | shitposter.club,suspend,FALSE,FALSE,iftas:hate-speech;explicit-content,TRUE 66 | shota.house,suspend,FALSE,FALSE,iftas:csam,TRUE 67 | social.cutefunny.net,suspend,FALSE,FALSE,iftas:spam,TRUE 68 | startrekshitposting.com,suspend,FALSE,FALSE,iftas:spam,TRUE 69 | twi.social,suspend,FALSE,FALSE,iftas:csam,TRUE 70 | varishangout.net,suspend,FALSE,FALSE,iftas:csam;hate-speech;online-harassment,TRUE 71 | webmasto.online,suspend,FALSE,FALSE,iftas:spam;coordinated-inauthentic-behaviour,TRUE 72 | xscape.club,suspend,FALSE,FALSE,iftas:csam,TRUE 73 | yggdrasil.social,suspend,FALSE,FALSE,iftas:hate-speech,TRUE -------------------------------------------------------------------------------- /blocklists/gardenfence.csv: -------------------------------------------------------------------------------- 1 | domain,severity,reject_media,reject_reports,public_comment,obfuscate 2 | 076.ne.jp,suspend,False,False,hate-associated,False 3 | 1611.social,suspend,False,False,"anti-lgbtq, hate-associated, hate-speech",False 4 | 5dollah.click,suspend,False,False,"anti-lgbtq, harassment, hate-associated, hate-speech, racism",False 5 | activitypub-troll.cf,suspend,False,False,"dos, harassment, spam",False 6 | adachi.party,suspend,False,False,"harassment, hate-associated, hate-speech, racism",False 7 | aethy.com,suspend,False,False,"inappropriate, underage",False 8 | annihilation.social,suspend,False,False,"harassment, hate-associated, hate-speech",False 9 | asbestos.cafe,suspend,False,False,"alt-right, anti-lgbtq, hate-associated, hate-speech, racism, underage",False 10 | bae.st,suspend,False,False,"alt-right, anti-lgbtq, hate-associated, hate-speech, inappropriate, nazism, racism",False 11 | banepo.st,suspend,False,False,"antivax, harassment, hate-associated",False 12 | baraag.net,suspend,False,False,"hate-associated, inappropriate, underage",False 13 | beefyboys.win,suspend,False,False,"hate-associated, hate-speech",False 14 | berserker.town,suspend,False,False,"alt-right, anti-lgbtq, fascism, hate-speech",False 15 | bird.makeup,suspend,False,False,"bots, twitter",False 16 | blob.cat,suspend,False,False,"harassment, porn",False 17 | boymoder.biz,suspend,False,False,"harassment, hate-associated, hate-speech, racism, underage",False 18 | breastmilk.club,suspend,False,False,"anti-lgbtq, harassment, hate-associated, hate-speech, racism",False 19 | brighteon.social,suspend,False,False,conspiracy,False 20 | bungle.online,suspend,False,False,"hate-associated, racism",False 21 | cachapa.xyz,suspend,False,False,"hate-speech, racism",False 22 | cannibal.cafe,suspend,False,False,"inappropriate, underage",False 23 | cawfee.club,suspend,False,False,"hate-associated, hate-speech",False 24 | clew.lol,suspend,False,False,"hate-associated, hate-speech, racism",False 25 | clubcyberia.co,suspend,False,False,"harassment, hate-speech, racism",False 26 | collapsitarian.io,suspend,False,False,"alt-right, hate-associated",False 27 | contrapointsfan.club,suspend,False,False,"hate-associated, hate-speech",False 28 | cryptodon.lol,suspend,False,False,crypto,False 29 | cum.camp,suspend,False,False,"harassment, inappropriate",False 30 | cum.salon,suspend,False,False,"hate-speech, porn",False 31 | cunnyborea.space,suspend,False,False,"antisemitism, hate-speech, inappropriate, racism, underage",False 32 | cunnyborea.top,suspend,False,False,"hate-speech, inappropriate, racism, spam, underage",False 33 | cutefunny.net,suspend,False,False,"hate-speech, inappropriate, racism, spam, underage",False 34 | cybercriminal.eu,suspend,False,False,"harassment, hate-associated, spam",False 35 | decayable.ink,suspend,False,False,"alt-right, hate-associated, hate-speech, racism",False 36 | detroitriotcity.com,suspend,False,False,"anti-lgbtq, harassment, hate-speech, racism",False 37 | eientei.org,suspend,False,False,"hate-speech, racism",False 38 | eveningzoo.club,suspend,False,False,"alt-right, antisemitism, conspiracy, fascism, hate-speech, racism",False 39 | federated.fun,suspend,False,False,"anti-lgbtq, hate-speech",False 40 | fightthis.net,suspend,False,False,hate-associated,False 41 | fluf.club,suspend,False,False,"hate-associated, hate-speech",False 42 | freak.university,suspend,False,False,"inappropriate, underage",False 43 | freeatlantis.com,suspend,False,False,"conspiracy, hate-speech, misinformation",False 44 | freesoftwareextremist.com,suspend,False,False,"alt-right, hate-associated, hate-speech",False 45 | freespeechextremist.com,suspend,False,False,hate-speech,False 46 | frennet.xyz,suspend,False,False,"hate-associated, hate-speech",False 47 | fsebugoutzone.org,suspend,False,False,"hate-speech, racism",False 48 | gameliberty.club,suspend,False,False,"bots, hate-speech, racism",False 49 | gearlandia.haus,suspend,False,False,"alt-right, anti-lgbtq, racism",False 50 | genderheretics.xyz,suspend,False,False,"anti-lgbtq, hate-speech",False 51 | geofront.rocks,suspend,False,False,"hate-speech, nazism, racism",False 52 | ghetti.monster,suspend,False,False,"antisemitism, hate-speech, inappropriate, racism, underage",False 53 | gleasonator.com,suspend,False,False,anti-lgbtq,False 54 | glee.li,suspend,False,False,"harassment, hate-speech, racism",False 55 | h5q.net,suspend,False,False,"inappropriate, porn, underage",False 56 | hidamari.apartments,suspend,False,False,"alt-right, nazism",False 57 | husk.site,suspend,False,False,"harassment, hate-speech, racism",False 58 | iddqd.social,suspend,False,False,"harassment, hate-associated, nazism",False 59 | ignorelist.com,suspend,False,False,"dos, spam",False 60 | intkos.link,suspend,False,False,"alt-right, antisemitism, hate-speech",False 61 | kawa-kun.com,suspend,False,False,hate-associated,False 62 | kitsunemimi.club,suspend,False,False,"hate-speech, racism",False 63 | kiwifarms.cc,suspend,False,False,"alt-right, anti-lgbtq, harassment, racism",False 64 | kompost.cz,suspend,False,False,"hate-associated, hate-speech, nazism, racism",False 65 | kurosawa.moe,suspend,False,False,"harassment, hate-associated, hate-speech, racism, underage",False 66 | lain.la,suspend,False,False,hate-associated,False 67 | leafposter.club,suspend,False,False,"hate-associated, hate-speech",False 68 | lewdieheaven.com,suspend,False,False,"inappropriate, underage",False 69 | ligma.pro,suspend,False,False,alt-right,False 70 | loli.church,suspend,False,False,"alt-right, antisemitism, hate-speech, inappropriate, racism, underage",False 71 | lolicon.rocks,suspend,False,False,"hate-speech, underage",False 72 | lolison.network,suspend,False,False,"inappropriate, underage",False 73 | lolison.top,suspend,False,False,"inappropriate, underage",False 74 | lovingexpressions.net,suspend,False,False,"hate-associated, hate-speech, nazism, racism",False 75 | mapsupport.de,suspend,False,False,"harassment, inappropriate, underage",False 76 | mastinator.com,suspend,False,False,"bots, harassment",False 77 | merovingian.club,suspend,False,False,"anti-lgbtq, hate-associated, hate-speech",False 78 | midwaytrades.com,suspend,False,False,"alt-right, anti-lgbtq, hate-associated",False 79 | mirr0r.city,suspend,False,False,"hate-associated, inappropriate, underage",False 80 | misskey-forkbomb.cf,suspend,False,False,"dos, spam",False 81 | mostr.pub,suspend,False,False,"alt-right, hate-speech, spam",False 82 | mouse.services,suspend,False,False,"harassment, hate-associated",False 83 | mugicha.club,suspend,False,False,"hate-speech, racism",False 84 | nationalist.social,suspend,False,False,"alt-right, hate-speech, nazism, racism",False 85 | nicecrew.digital,suspend,False,False,"anti-lgbtq, hate-speech, racism",False 86 | nightshift.social,suspend,False,False,"antivax, conspiracy, harassment, hate-associated, hate-speech, racism",False 87 | nnia.space,suspend,False,False,"alt-right, underage",False 88 | noagendasocial.com,suspend,False,False,"alt-right, hate-speech",False 89 | noauthority.social,suspend,False,False,"alt-right, anti-lgbtq, conspiracy, harassment, hate-speech, racism",False 90 | nobodyhasthe.biz,suspend,False,False,"anti-lgbtq, hate-speech",False 91 | norwoodzero.net,suspend,False,False,"anti-lgbtq, hate-associated, hate-speech, nazism, racism",False 92 | novoa.nagoya,suspend,False,False,"antisemitism, harassment, hate-associated, hate-speech, racism",False 93 | nyanide.com,suspend,False,False,"anti-lgbtq, harassment, hate-speech, nazism, racism",False 94 | obo.sh,suspend,False,False,"alt-right, inappropriate, underage",False 95 | oddballs.online,suspend,False,False,"inappropriate, underage",False 96 | outpoa.st,suspend,False,False,"alt-right, hate-speech, racism",False 97 | paravielfalt.zone,suspend,False,False,"inappropriate, underage",False 98 | parcero.bond,suspend,False,False,"hate-speech, racism",False 99 | parcero.casa,suspend,False,False,"harassment, hate-speech",False 100 | pawoo.net,suspend,False,False,"inappropriate, underage",False 101 | pedo.school,suspend,False,False,underage,False 102 | pibvt.net,suspend,False,False,"inappropriate, underage",False 103 | pieville.net,suspend,False,False,"harassment, hate-speech, nazism",False 104 | pisskey.io,suspend,False,False,"hate-associated, hate-speech",False 105 | pkteerium.xyz,suspend,False,False,"alt-right, conspiracy",False 106 | poa.st,suspend,False,False,"alt-right, hate-speech, nazism, racism",False 107 | pone.social,suspend,False,False,"anti-lgbtq, hate-associated, racism, underage",False 108 | poster.place,suspend,False,False,"alt-right, anti-lgbtq, hate-associated, hate-speech, nazism, racism",False 109 | quanta.wiki,suspend,False,False,"alt-right, anti-lgbtq, hate-associated",False 110 | rape.pet,suspend,False,False,"inappropriate, underage",False 111 | rapemeat.solutions,suspend,False,False,"hate-speech, inappropriate, underage",False 112 | rdrama.cc,suspend,False,False,"anti-lgbtq, harassment, hate-speech, racism",False 113 | refusal.biz,suspend,False,False,"alt-right, hate-speech, inappropriate, underage",False 114 | repl.co,suspend,False,False,"dos, spam",False 115 | republic.red,suspend,False,False,"alt-right, anti-lgbtq, conspiracy, fascism, hate-speech",False 116 | rojogato.com,suspend,False,False,"harassment, hate-speech",False 117 | rot.gives,suspend,False,False,"hate-speech, inappropriate, underage",False 118 | ryona.agency,suspend,False,False,"anti-lgbtq, hate-speech",False 119 | schwartzwelt.xyz,suspend,False,False,"hate-associated, hate-speech",False 120 | scots.network,suspend,False,False,"anti-lgbtq, hate-speech",False 121 | seal.cafe,suspend,False,False,"alt-right, anti-lgbtq, antisemitism, harassment, hate-associated, hate-speech, racism",False 122 | shitpost.cloud,suspend,False,False,"alt-right, harassment, hate-speech, racism",False 123 | shitposter.club,suspend,False,False,"alt-right, harassment",False 124 | shitposter.world,suspend,False,False,"alt-right, harassment",False 125 | shortstacksran.ch,suspend,False,False,"antisemitism, hate-associated, hate-speech, racism",False 126 | shota.house,suspend,False,False,"alt-right, inappropriate, underage",False 127 | shrimpposter.club,suspend,False,False,"harassment, hate-associated, hate-speech",False 128 | skinheads.social,suspend,False,False,"hate-associated, hate-speech, nazism",False 129 | skippers-bin.com,suspend,False,False,"inappropriate, underage",False 130 | sneed.social,suspend,False,False,"anti-lgbtq, antisemitism, fascism, hate-speech, racism",False 131 | spinster.xyz,suspend,False,False,anti-lgbtq,False 132 | springbo.cc,suspend,False,False,"alt-right, anti-lgbtq, harassment, racism",False 133 | stereophonic.space,suspend,False,False,"alt-right, harassment, hate-associated",False 134 | strelizia.net,suspend,False,False,"hate-speech, underage",False 135 | supernets.social,suspend,False,False,"alt-right, hate-speech, racism",False 136 | tastingtraffic.net,suspend,False,False,"anti-lgbtq, spam",False 137 | teci.world,suspend,False,False,"alt-right, hate-associated",False 138 | theblab.org,suspend,False,False,"hate-speech, racism",False 139 | truthsocial.co.in,suspend,False,False,alt-right,False 140 | usualsuspects.lol,suspend,False,False,"anti-lgbtq, harassment, hate-speech",False 141 | varishangout.net,suspend,False,False,"anti-lgbtq, hate-speech, inappropriate, racism",False 142 | whinge.town,suspend,False,False,"anti-lgbtq, hate-associated, racism",False 143 | whitewomen.dog,suspend,False,False,"hate-associated, hate-speech, inappropriate, racism, underage",False 144 | wideboys.org,suspend,False,False,"anti-lgbtq, harassment, hate-associated, racism",False 145 | wolfgirl.bar,suspend,False,False,"antisemitism, harassment, hate-speech, racism",False 146 | yggdrasil.social,suspend,False,False,"anti-lgbtq, hate-speech",False 147 | youjo.love,suspend,False,False,"antisemitism, antivax, inappropriate, underage",False 148 | zztails.gay,suspend,False,False,"alt-right, hate-speech, racism",False 149 | -------------------------------------------------------------------------------- /blocklists/mastodon.online.csv: -------------------------------------------------------------------------------- 1 | domain,severity,reject_media,reject_reports,public_comment,obfuscate 2 | 5dollah.click,suspend,False,False,Hate speech,False 3 | ac.akirin.xyz,silence,False,False,Unmanaged spam,False 4 | activitypub-proxy.cf,suspend,False,False,Spam,False 5 | activitypub-troll.cf,suspend,False,False,Spam,False 6 | activitypub.awakari.com,silence,False,False,Spam,False 7 | aethy.com,suspend,False,False,Inappropriate content,False 8 | anime.website,suspend,False,False,Inappropriate content,False 9 | annihilation.social,suspend,False,False,Hate speech,False 10 | asbestos.cafe,suspend,False,False,Hate speech,False 11 | ati**.***ss,suspend,False,False,Inappropriate content,False 12 | bae.st,suspend,False,False,Inappropriate content,False 13 | bais*****.top,suspend,False,False,Inappropriate content,False 14 | baraag.net,suspend,False,False,,False 15 | beefyboys.club,suspend,False,False,Hate speech,False 16 | beefyboys.win,suspend,False,False,Hate speech,False 17 | beta.birdsite.live,suspend,False,False,,False 18 | beta.mstdn.cf,suspend,False,False,Third-party bots,False 19 | bgzashtita.es,silence,False,False,Misinformation,False 20 | birb.elfenban.de,suspend,False,False,Third-party bots,False 21 | birb.redra1n.net,suspend,False,False,Third-party bots,False 22 | birb.stream,suspend,False,False,Third-party bots,False 23 | bird.evilcyberhacker.net,suspend,False,False,Third-party bots,False 24 | bird.froth.zone,suspend,False,False,Third-party bots,False 25 | bird.makeup,suspend,False,False,Third-party bots,False 26 | bird.seafoam.space,suspend,False,False,Third-party bots,False 27 | birdbots.leptonics.com,suspend,False,False,Third-party bots,False 28 | birdlive.grupotd.nat.cu,suspend,False,False,Third party bots,False 29 | birdmakeup.sboulema.nl,suspend,False,False,Third-party bots,False 30 | birdsite.am-institute.swiss,suspend,False,False,Third-party bots,False 31 | birdsite.blazelight.dev,suspend,False,False,Third-party bots,False 32 | birdsite.frog.fashion,suspend,False,False,Third-party bots,False 33 | birdsite.james.moody.name,suspend,False,False,Third-party bots,False 34 | birdsite.lakedrops.com,suspend,False,False,Third-party bots,False 35 | birdsite.platypush.tech,suspend,False,False,Third-party bots,False 36 | birdsite.seejy.ninja,suspend,False,False,Third-party bots,False 37 | birdsite.tcjc.uk,suspend,False,False,Third-party bots,False 38 | birdsite.thorlaksson.com,suspend,False,False,Third-party bots,False 39 | birdsite.weiranzhang.com,suspend,False,False,Third-party bots,False 40 | birdsite.wilde.cloud,suspend,False,False,Third-party bots,False 41 | birdsitelive.falschgold.net,suspend,False,False,Third-party bots,False 42 | birdsitelive.kevinyank.com,suspend,False,False,Third-party bots,False 43 | birdsitelive.samedwards.ca,suspend,False,False,Third-party bots,False 44 | birdsitelive.treffler.cloud,suspend,False,False,Third-party bots,False 45 | bmu.1a23.studio,suspend,False,False,Third-party bots,False 46 | brands.town,suspend,False,False,Spam,False 47 | breastmilk.club,suspend,False,False,Hate speech,False 48 | bridge.yopp.me,suspend,False,False,Third-party bots,False 49 | brighteon.social,silence,False,False,Misinformation and conspiracy theories,False 50 | bur****.*oe,suspend,False,False,Inappropriate content,False 51 | cachapa.xyz,suspend,False,False,Hate speech,False 52 | cann****.*afe,suspend,False,False,Inappropriate content,False 53 | cass****.**use,suspend,False,False,Inappropriate content,False 54 | catcore.life,silence,False,False,Unmanaged spam,False 55 | catgirl.life,suspend,False,False,Inappropriate content,False 56 | chil*****.**ace,suspend,False,False,Inappropriate content,False 57 | chil*****.*hop,suspend,False,False,Inappropriate content,False 58 | chil*****.su,suspend,False,False,Inappropriate content,False 59 | chil*****.top,suspend,False,False,Inappropriate content,False 60 | chudbuds.lol,suspend,False,False,Hate speech,False 61 | clew.lol,suspend,False,False,Hate speech,False 62 | clown.******sity,suspend,False,False,Inappropriate content,False 63 | clubcyberia.co,suspend,False,False,Hate speech,False 64 | comfyboy.club,suspend,False,False,Hate speech,False 65 | cotto******.cafe,suspend,False,False,Inappropriate content,False 66 | cub.**ol,suspend,False,False,Inappropriate content,False 67 | cubs**.*****res,suspend,False,False,Inappropriate content,False 68 | cum.salon,suspend,False,False,Hate speech,False 69 | cun****.cc,suspend,False,False,Inappropriate content,False 70 | cunn******.top,suspend,False,False,Inappropriate content,False 71 | cunn*.***uty,suspend,False,False,Inappropriate content,False 72 | cunny*****.*pace,suspend,False,False,Inappropriate content,False 73 | cut***.**ne,suspend,False,False,Inappropriate content,False 74 | cuti*****.cc,suspend,False,False,Inappropriate content,False 75 | cuti*****.org,suspend,False,False,Inappropriate content,False 76 | daji******.com,suspend,False,False,Inappropriate content,False 77 | decayable.ink,suspend,False,False,Hate speech,False 78 | deepspace.cafe,suspend,False,False,Harassment,False 79 | deepw*********.net,suspend,False,False,Inappropriate content,False 80 | degen******.fail,suspend,False,False,,False 81 | detroitriotcity.com,suspend,False,False,Hate speech,False 82 | dicekey.jp,silence,False,False,Unmanaged spam,False 83 | ede**.***th,suspend,False,False,Inappropriate content,False 84 | eepy.****ess,suspend,False,False,Inappropriate content,False 85 | eientei.org,suspend,False,False,Hate speech,False 86 | eveningzoo.club,suspend,False,False,Hate speech,False 87 | fedi.c*********n.org,suspend,False,False,Inappropriate content,False 88 | fil**.**ve,suspend,False,False,Inappropriate content,False 89 | fr13nd5.com,silence,False,False,Misinformation,False 90 | freak.******sity,suspend,False,False,Inappropriate content,False 91 | freeatlantis.com,suspend,False,False,Hate speech,False 92 | freecumextremist.com,suspend,False,False,Hate speech,False 93 | freespeech.club,suspend,False,False,Hate speech,False 94 | freespeechextremist.com,suspend,False,False,Hate speech,False 95 | fsebugoutzone.org,suspend,False,False,Hate speech,False 96 | gab.ai,suspend,False,False,Hate speech,False 97 | gab.com,suspend,False,False,Hate speech,False 98 | gameliberty.club,suspend,False,False,Hate speech,False 99 | gearlandia.haus,suspend,False,False,Hate speech,False 100 | genderheretics.xyz,suspend,False,False,Transphobia,False 101 | getgle.org,suspend,False,False,Hate speech,False 102 | ghet**.****ter,suspend,False,False,Inappropriate content,False 103 | gimm*****.cc,suspend,False,False,Inappropriate content,False 104 | glindr.org,suspend,False,False,Transphobia,False 105 | globalfrens.com,suspend,False,False,Hate speech,False 106 | glowers.club,suspend,False,False,Hate speech,False 107 | gtmastodon.online,suspend,False,False,Spam,False 108 | h5q.net,suspend,False,False,Inappropriate content,False 109 | head***.*afe,suspend,False,False,Inappropriate content,False 110 | hen***.**by,suspend,False,False,Inappropriate content,False 111 | hunk.city,suspend,False,False,Spam,False 112 | husk.site,suspend,False,False,Hate speech,False 113 | imo***.**cs,suspend,False,False,Inappropriate content,False 114 | imou**.****sed,suspend,False,False,Inappropriate content,False 115 | instinctd.com,suspend,False,False,Third-party bots,False 116 | inum***.*ove,suspend,False,False,Inappropriate content,False 117 | jaeger.website,suspend,False,False,Transphobia,False 118 | kids******.fyi,suspend,False,False,Inappropriate content,False 119 | kids.0px.io,silence,False,False,Unmanaged spam,False 120 | kiwifarms.cc,suspend,False,False,Known for harassment,False 121 | kodo.*****res,suspend,False,False,Inappropriate content,False 122 | kog**.cc,suspend,False,False,Inappropriate content,False 123 | leafposter.club,suspend,False,False,Hate speech,False 124 | leonardwong.dev,suspend,False,False,Third-party bots,False 125 | lewdi*******.com,suspend,False,False,Inappropriate content,False 126 | lewdi*******.vip,suspend,False,False,Inappropriate content,False 127 | lick.*****.win,suspend,False,False,Inappropriate content,False 128 | lit.t*******.xyz,suspend,False,False,Inappropriate content,False 129 | lol*.****ch,suspend,False,False,Inappropriate content,False 130 | lol*.***za,suspend,False,False,Inappropriate content,False 131 | loli****.***ool,suspend,False,False,Inappropriate content,False 132 | loli***.****ork,suspend,False,False,Inappropriate content,False 133 | loli***.**cks,suspend,False,False,Inappropriate content,False 134 | loli.****sed,suspend,False,False,Inappropriate content,False 135 | lolison.top,suspend,False,False,Inappropriate content,False 136 | lush.moe,suspend,False,False,Inappropriate content,False 137 | m.n1l.dev,silence,False,False,Unmanaged spam,False 138 | maps******.de,suspend,False,False,Inappropriate content,False 139 | mashtodon.alterracloud.com,suspend,False,False,Hate speech,False 140 | mast-serv.site,suspend,False,False,Spam,False 141 | mast.socialspill.com,suspend,False,False,Third-party bots,False 142 | mastinator.com,suspend,False,False,Third-party bots,False 143 | masto***.******.lol,suspend,False,False,Inappropriate content,False 144 | mastodon.sitejp.synology.me,silence,False,False,Unmanaged spam,False 145 | mastodon.social.fraudulent.link,suspend,False,False,Impersonation,False 146 | mastodon.socialspill.com,suspend,False,False,Third-party bots,False 147 | mastodonhub.com,suspend,False,False,Mirroring other Mastodon accounts without permission,False 148 | merovingian.club,suspend,False,False,Hate speech,False 149 | min**.**fe,suspend,False,False,Inappropriate content,False 150 | minds.com,silence,False,False,Hate speech,False 151 | misskey-forkbomb.cf,suspend,False,False,Spam,False 152 | misskey.io,silence,False,False,Inappropriate content,False 153 | misskey.shunrin.com,silence,False,False,Unmanaged spam,False 154 | momostr.pink,silence,False,False,Spam,False 155 | monk.**.****ness,suspend,False,False,Inappropriate content,False 156 | mostr.pub,silence,False,False,Spam,False 157 | mstdn.foxfam.club,silence,False,False,Server dedicated to unofficial news bots,False 158 | mugicha.club,suspend,False,False,Transphobia,False 159 | my.dirtyhobby.xyz,suspend,False,False,Automated porn spam ,False 160 | nate*******.org,suspend,False,False,Hate speech,False 161 | nateh******.**line,suspend,False,False,Hate speech,False 162 | nationalist.social,suspend,False,False,Hate speech,False 163 | nazi.social,suspend,False,False,Hate speech,False 164 | neckbeard.xyz,suspend,False,False,Hate speech,False 165 | nee****.*op,suspend,False,False,Inappropriate content,False 166 | newsbots.eu,suspend,False,False,Bots,False 167 | nicecrew.digital,suspend,False,False,Hate speech,False 168 | nnia.space,suspend,False,False,-,False 169 | noagendasocial.com,silence,False,False, Misinformation and conspiracy theories ,False 170 | noauthority.social,suspend,False,False,Hate speech,False 171 | norwoodzero.net,suspend,False,False,Hate speech,False 172 | ns.auction,suspend,False,False,Hate speech,False 173 | nya.u*******.moe,suspend,False,False,Inappropriate content,False 174 | nyanide.com,suspend,False,False,Hate speech,False 175 | ob*.*h,suspend,False,False,Inappropriate content,False 176 | oddb****.***ine,suspend,False,False,Inappropriate content,False 177 | onion.social,silence,False,False,Spam,False 178 | orfodon.org,suspend,False,False,Third-party bots,False 179 | out****.*ip,suspend,False,False,Inappropriate content,False 180 | pac**.us,suspend,False,False,Inappropriate content,False 181 | paravielfalt.zone,suspend,False,False,Inappropriate content,False 182 | parcero.bond,suspend,False,False,Hate speech,False 183 | parcero.casa,suspend,False,False,Hate speech,False 184 | pawoo.net,suspend,False,False,Inappropriate content,False 185 | paypig.org,suspend,False,False,Hate speech,False 186 | ped*.****ol,suspend,False,False,Inappropriate content,False 187 | pett****.art,suspend,False,False,Inappropriate content,False 188 | pieville.net,suspend,False,False,Hate speech,False 189 | pika.moe,silence,False,False,Unmanaged spam,False 190 | pl.smuglo.li,suspend,False,False,Inappropriate content,False 191 | pl.wy********.art,suspend,False,False,Inappropriate content,False 192 | plero**.*****.love,suspend,False,False,Inappropriate content,False 193 | plero**.*****.net,suspend,False,False,Inappropriate content,False 194 | pleroma.**********he.biz,suspend,False,False,Hate speech,False 195 | pleroma.adachi.party,suspend,False,False,Hate speech,False 196 | pleroma.fun,suspend,False,False,Hate speech,False 197 | pleroma.kitsunemimi.club,suspend,False,False,Hate speech,False 198 | pleroma.us,suspend,False,False,Hate speech,False 199 | poa.st,suspend,False,False,Hate speech,False 200 | poast.tv,suspend,False,False,Hate speech,False 201 | pooper.social,suspend,False,False,Hate speech,False 202 | poster.place,suspend,False,False,Hate speech,False 203 | postin*.*******.rocks,suspend,False,False,Hate speech,False 204 | pouque.net,suspend,False,False,Hate speech,False 205 | pupp******.cc,suspend,False,False,Inappropriate content,False 206 | pupp******.org,suspend,False,False,Inappropriate content,False 207 | rakket.app,suspend,False,False,Hate speech,False 208 | rap*.*et,suspend,False,False,Inappropriate content,False 209 | rapem***.*****ions,suspend,False,False,Inappropriate content,False 210 | rapemeat.express,suspend,False,False,Inappropriate content,False 211 | rdrama.cc,suspend,False,False,Hate speech,False 212 | refusal.biz,suspend,False,False,Inappropriate content,False 213 | repl.co,suspend,False,False,Spam,False 214 | rot.***es,suspend,False,False,Inappropriate content,False 215 | ryona.agency,suspend,False,False,Hate speech,False 216 | schwartzwelt.xyz,suspend,False,False,Hate speech,False 217 | seal.cafe,suspend,False,False,Hate speech,False 218 | sexy****.xyz,suspend,False,False,Inappropriate content,False 219 | shitpisscum.mooo.com,suspend,False,False,Hate speech,False 220 | shitpost.cloud,suspend,False,False,Hate speech,False 221 | shitposte.rs,suspend,False,False,Hate speech,False 222 | shitposter.club,suspend,False,False,Hate speech,False 223 | shitposter.world,silence,False,False,Harassment,False 224 | shitposting.army,suspend,False,False,Hate speech,False 225 | sho**.***se,suspend,False,False,Inappropriate content,False 226 | shortstackran.ch,suspend,False,False,Hate speech,False 227 | shortstacksran.ch,suspend,False,False,Hate speech,False 228 | shot*****.xyz,suspend,False,False,Inappropriate content,False 229 | shrimpcam.pw,suspend,False,False,Third-party bots,False 230 | shrimpposter.club,suspend,False,False,Hate speech,False 231 | sinblr.com,suspend,False,False,Automated porn spam,False 232 | skinheads.social,suspend,False,False,Hate speech,False 233 | skipp*******.com,suspend,False,False,Inappropriate content,False 234 | sleepy.cafe,suspend,False,False,Hate speech,False 235 | sneed.social,suspend,False,False,Hate speech,False 236 | social.********y.net,suspend,False,False,Inappropriate content,False 237 | social.freysa.ai,suspend,False,False,Spam,False 238 | social.lovingexpressions.net,suspend,False,False,Hate speech,False 239 | social.onlinesession.app,silence,False,False,Unmanaged spam,False 240 | social.quodverum.com,silence,False,False,Misinformation and conspiracy theories,False 241 | solagg.com,suspend,False,False,Spam,False 242 | sovran.social,suspend,False,False,Third-party bots,False 243 | spinster.xyz,suspend,False,False,Transphobia,False 244 | strelizia.net,suspend,False,False,Hate speech,False 245 | supernets.social,suspend,False,False,Hate speech,False 246 | switter.at,suspend,False,False,Preparing for announced shutdown,False 247 | t.l3r.me,suspend,False,False,Third-party bots,False 248 | tastingtraffic.net,suspend,False,False,Spam,False 249 | the.usualsuspects.lol,suspend,False,False,Hate speech,False 250 | theblab.org,suspend,False,False,Hate speech,False 251 | tickler.cc,silence,False,False,Unmanaged spam,False 252 | too****.*tf,suspend,False,False,Inappropriate content,False 253 | too****.*un,suspend,False,False,Inappropriate content,False 254 | toot.love,silence,False,False,Harassment,False 255 | trab****.com,suspend,False,False,Hate speech,False 256 | truthsocialpro.org,suspend,False,False,,False 257 | tum**.**wn,suspend,False,False,Inappropriate content,False 258 | tweet.pasture.moe,suspend,False,False,Third-party bots,False 259 | tweetbridge.kogasa.de,suspend,False,False,Third-party bots,False 260 | tweets.icu,suspend,False,False,Third-party bots,False 261 | twitiverse.com,suspend,False,False,Third-party bots,False 262 | twitter-bridge.cryobyte.net,suspend,False,False,Third-party bots,False 263 | twitter.1d4.us,suspend,False,False,Third-party bots,False 264 | twitter.activitypub.actor,suspend,False,False,Third-party bots,False 265 | twitter.cryobyte.net,suspend,False,False,Third-party bots,False 266 | twitter.doesnotexist.club,suspend,False,False,Third-party bots,False 267 | twitter.grants.cafe,suspend,False,False,Third-party bots,False 268 | twitter.piriklub.eu,suspend,False,False,Third-party bots,False 269 | twitterbridge.jannis.rocks,suspend,False,False,Third-party bots,False 270 | twtr.carnivore.social,suspend,False,False,Third-party bots,False 271 | twtr.ingeechat.party,suspend,False,False,Third-party bots,False 272 | twtr.plus,suspend,False,False,,False 273 | twtr.vrij.social,suspend,False,False,Third-party bots,False 274 | twtr.wappie.land,suspend,False,False,Third-party bots,False 275 | twtrbridge.de,suspend,False,False,Third-party bots,False 276 | twttr.yukineko.me,suspend,False,False,Third-party bots,False 277 | urchan.org,suspend,False,False,Hate speech,False 278 | urweibo.com,silence,False,False,Unmanaged spam,False 279 | usasa.ky,silence,False,False,Unmanaged spam,False 280 | varis*******.net,suspend,False,False,Inappropriate content,False 281 | webmasto.online,suspend,False,False,Spam,False 282 | whit******.dog,suspend,False,False,Inappropriate content,False 283 | wolfgirl.bar,suspend,False,False,Hate speech,False 284 | workers.dev,suspend,False,False,Botnet,False 285 | x.good.news,suspend,False,False,Third-party bots,False 286 | xxxtumblr.org,silence,False,False,Pornographic content not marked as sensitive,False 287 | yes***.*et,suspend,False,False,Inappropriate content,False 288 | yggdrasil.social,suspend,False,False,Hate speech,False 289 | yot**.***ks,suspend,False,False,Inappropriate content,False 290 | yot**.*ol,suspend,False,False,Inappropriate content,False 291 | you**.**ve,suspend,False,False,Inappropriate content,False 292 | youj*.*****ver,suspend,False,False,Inappropriate content,False 293 | yum***.cc,suspend,False,False,Inappropriate content,False 294 | zet***.**ub,suspend,False,False,Inappropriate content ,False 295 | zztails.gay,suspend,False,False,Hate speech,False 296 | -------------------------------------------------------------------------------- /blocklists/mastodon.social.csv: -------------------------------------------------------------------------------- 1 | domain,severity,reject_media,reject_reports,public_comment,obfuscate 2 | 10minutepleroma.com,suspend,False,False,Spam,False 3 | 5dollah.click,suspend,False,False,Hate speech,False 4 | a.sc,suspend,False,False,Hate speech,False 5 | ac.akirin.xyz,silence,False,False,Unmanaged spam,False 6 | activitypub-proxy.cf,suspend,False,False,Spam,False 7 | activitypub-troll.cf,suspend,False,False,Spam,False 8 | activitypub.awakari.com,silence,False,False,Spam,False 9 | aethy.com,suspend,False,False,Inappropriate content,False 10 | annihilation.social,suspend,False,False,Hate speech,False 11 | ap.***.st,suspend,False,False,Spam,False 12 | asbestos.cafe,suspend,False,False,Hate speech,False 13 | ati**.***ss,suspend,False,False,Inappropriate content,False 14 | bae.st,suspend,False,False,Inappropriate content,False 15 | bais*****.top,suspend,False,False,Inappropriate content,False 16 | bar***.*et,suspend,False,False,Inappropriate content,False 17 | beef*****.*lub,suspend,False,False,Inappropriate content,False 18 | beefyboys.win,suspend,False,False,Hate speech,False 19 | best****.fun,suspend,False,False,Inappropriate content,False 20 | beta.birdsite.live,suspend,False,False,Third-party bots,False 21 | beta.mstdn.cf,suspend,False,False,Third-party bots,False 22 | bgzashtita.es,silence,False,False,Misinformation,False 23 | birb.elfenban.de,suspend,False,False,Third-party bots,False 24 | birb.redra1n.net,suspend,False,False,Third-party bots,False 25 | birb.stream,suspend,False,False,Third-party bots,False 26 | bird.evilcyberhacker.net,suspend,False,False,Third-party bots,False 27 | bird.froth.zone,suspend,False,False,Third-party bots,False 28 | bird.im-in.space,suspend,False,False,Third-party bots,False 29 | bird.istheguy.com,suspend,False,False,Third-party bots,False 30 | bird.makeup,suspend,False,False,Third-party bots,False 31 | bird.r669.live,suspend,False,False,Third-party bots,False 32 | bird.seafoam.space,suspend,False,False,Third-party bots,False 33 | birdbots.leptonics.com,suspend,False,False,Third-party bots,False 34 | birdbridge.autonomy.earth,suspend,False,False,Third-party bots,False 35 | birdlive.grupotd.nat.cu,suspend,False,False,Third party bots,False 36 | birdmakeup.opiumpost.org,suspend,False,False,Third-party bots,False 37 | birdmakeup.sboulema.nl,suspend,False,False,Third-party bots,False 38 | birdsite.am-institute.swiss,suspend,False,False,Third-party bots,False 39 | birdsite.b93.dece.space,suspend,False,False,Third-party bots,False 40 | birdsite.blazelight.dev,suspend,False,False,Third-party bots,False 41 | birdsite.cloutier.co,suspend,False,False,Third-party bots,False 42 | birdsite.darkesttimeline.social,suspend,False,False,Third-party bots,False 43 | birdsite.frog.fashion,suspend,False,False,Third-party bots,False 44 | birdsite.gabeappleton.me,suspend,False,False,Third-party bots,False 45 | birdsite.gred.al,suspend,False,False,Third-party bots,False 46 | birdsite.james.moody.name,suspend,False,False,Third-party bots,False 47 | birdsite.jemverse.xyz,suspend,False,False,Third-party bots,False 48 | birdsite.kaijauch.de,suspend,False,False,Third-party bots,False 49 | birdsite.lakedrops.com,suspend,False,False,Third-party bots,False 50 | birdsite.link,suspend,False,False,Third-party bots,False 51 | birdsite.mastodon.me.uk,suspend,False,False,Third-party bots,False 52 | birdsite.miisu.net,suspend,False,False,Third-party bots,False 53 | birdsite.monster,suspend,False,False,Third-party bots,False 54 | birdsite.nytpu.com,suspend,False,False,Third-party bots,False 55 | birdsite.oliviaappleton.com,suspend,False,False,Third-party bots,False 56 | birdsite.platypush.tech,suspend,False,False,Third-party bots,False 57 | birdsite.seejy.ninja,suspend,False,False,Third-party bots,False 58 | birdsite.skye.cx,suspend,False,False,Third-party bots,False 59 | birdsite.slashdev.space,suspend,False,False,Third-party bots,False 60 | birdsite.spectreos.de,suspend,False,False,Third-party bots,False 61 | birdsite.tcjc.uk,suspend,False,False,Third-party bots,False 62 | birdsite.thorlaksson.com,suspend,False,False,Third-party bots,False 63 | birdsite.toot.si,suspend,False,False,Third-party bots,False 64 | birdsite.vrparty.social,suspend,False,False,Third-party bots,False 65 | birdsite.weiranzhang.com,suspend,False,False,Third-party bots,False 66 | birdsite.wilde.cloud,suspend,False,False,Third-party bots,False 67 | birdsitelive.baguette-it.social,suspend,False,False,Third-party bots,False 68 | birdsitelive.bubbletea.dev,suspend,False,False,Third-party bots,False 69 | birdsitelive.falschgold.net,suspend,False,False,Third-party bots,False 70 | birdsitelive.kevinyank.com,suspend,False,False,Third-party bots,False 71 | birdsitelive.loca.lt,suspend,False,False,Third-party bots,False 72 | birdsitelive.moistgarbage.info,suspend,False,False,Third-party bots,False 73 | birdsitelive.samedwards.ca,suspend,False,False,Third-party bots,False 74 | birdsitelive.treffler.cloud,suspend,False,False,Third-party bots,False 75 | bmu.1a23.studio,suspend,False,False,Third-party bots,False 76 | brands.town,suspend,False,False,Spam,False 77 | breastmilk.club,suspend,False,False,Hate speech,False 78 | bridge.birb.space,suspend,False,False,Third-party bots,False 79 | bridge.yopp.me,suspend,False,False,Third-party bots,False 80 | brighteon.social,silence,False,False,Conspiracy theories,False 81 | bsd.moe,silence,False,False,Harassment,False 82 | bur****.*oe,suspend,False,False,Inappropriate content,False 83 | cachapa.xyz,suspend,False,False,Hate speech,False 84 | cann****.*afe,suspend,False,False,Inappropriate content,False 85 | cass****.**use,suspend,False,False,Inappropriate content,False 86 | catcore.life,silence,False,False,Unmanaged spam,False 87 | catgirl.life,suspend,False,False,Harassment,False 88 | cawfee.club,suspend,False,False,Hate speech,False 89 | chaurocks.com,suspend,False,False,Spam,False 90 | chil*****.**ace,suspend,False,False,Inappropriate content,False 91 | chil*****.*hop,suspend,False,False,Inappropriate content,False 92 | chil*****.su,suspend,False,False,Inappropriate content,False 93 | chil*****.top,suspend,False,False,Inappropriate content,False 94 | chud****.lol,suspend,False,False,Hate speech,False 95 | clew.lol,suspend,False,False,Hate speech,False 96 | clown.******sity,suspend,False,False,Inappropriate content,False 97 | clubcyberia.co,suspend,False,False,Hate speech,False 98 | cnet.site,suspend,False,False,Harassment,False 99 | comfyboy.club,suspend,False,False,Hate speech,False 100 | coom.club,suspend,False,False,Harassment,False 101 | cotto******.cafe,suspend,False,False,Inappropriate content,False 102 | cub.**ol,suspend,False,False,Inappropriate content,False 103 | cubs**.*****res,suspend,False,False,Inappropriate content,False 104 | cum.**mp,suspend,False,False,Inappropriate content,False 105 | cum.desupost.soy,suspend,False,False,Hate speech,False 106 | cum.salon,suspend,False,False,Hate speech,False 107 | cun****.cc,suspend,False,False,Inappropriate content,False 108 | cunn******.top,suspend,False,False,Inappropriate content,False 109 | cunn*.****nce,suspend,False,False,Inappropriate content,False 110 | cunn*.***uty,suspend,False,False,Inappropriate content,False 111 | cunny*****.*pace,suspend,False,False,Inappropriate content,False 112 | cut***.**ne,suspend,False,False,Inappropriate content,False 113 | cutec*******.cafe,suspend,False,False,Inappropriate content,False 114 | cuti*****.cc,suspend,False,False,Inappropriate content,False 115 | cuti*****.org,suspend,False,False,Inappropriate content,False 116 | cyberstorm.one,suspend,False,False,Hate speech,False 117 | daffodil-11.org,suspend,False,False,Spam,False 118 | daji******.com,suspend,False,False,Inappropriate content,False 119 | decayable.ink,suspend,False,False,Hate speech,False 120 | deepspace.cafe,suspend,False,False,Harassment,False 121 | deepw*********.net,suspend,False,False,Inappropriate content,False 122 | degen******.fail,suspend,False,False,Hate speech,False 123 | detroitriotcity.com,suspend,False,False,Hate speech,False 124 | dicekey.jp,silence,False,False,Unmanaged spam,False 125 | dogs*****.net,suspend,False,False,Hate speech,False 126 | ede**.***th,suspend,False,False,Inappropriate content,False 127 | eepy.****ess,suspend,False,False,Inappropriate content,False 128 | eientei.org,suspend,False,False,Hate speech,False 129 | eveningzoo.club,suspend,False,False,Hate speech,False 130 | fedi.app,suspend,False,False,Harassment,False 131 | fedi.c*********n.org,suspend,False,False,Inappropriate content,False 132 | feminism.lgbt,suspend,False,False,Harassment,False 133 | fil**.**ve,suspend,False,False,Inappropriate content,False 134 | firebird.mullet.social,suspend,False,False,Third-party bots,False 135 | fr13nd5.com,silence,False,False,Misinformation,False 136 | freak.******sity,suspend,False,False,Inappropriate content,False 137 | freeatlantis.com,suspend,False,False,Hate speech,False 138 | freecumextremist.com,suspend,False,False,Hate speech,False 139 | freesoftwareextremist.com,suspend,False,False,Hate speech,False 140 | freespeech.club,suspend,False,False,Hate speech,False 141 | freespeechextremist.com,suspend,False,False,Hate speech,False 142 | freezepeach.xyz,silence,False,False,Harassment,False 143 | frennet.xyz,suspend,False,False,Hate speech,False 144 | fsebugoutzone.org,suspend,False,False,Hate speech,False 145 | gab.ai,suspend,False,False,Harassment,False 146 | gab.com,suspend,False,False,Harassment,False 147 | gameliberty.club,suspend,False,False,Bot that announces blocks,False 148 | genderheretics.xyz,suspend,False,False,Transphobia,False 149 | getgle.org,suspend,False,False,Hate speech,False 150 | geti****.com,suspend,False,False,Inappropriate content,False 151 | ghet**.****ter,suspend,False,False,Inappropriate content,False 152 | gimm*****.cc,suspend,False,False,Inappropriate content,False 153 | gitmo.life,suspend,False,False,Hate speech,False 154 | gleasonator.com,suspend,False,False,Transphobia,False 155 | glindr.org,suspend,False,False,Transphobia,False 156 | glowers.club,suspend,False,False,Hate speech,False 157 | gor****.*om,suspend,False,False,Hate speech,False 158 | goy**.*pp,suspend,False,False,Hate speech,False 159 | gtmastodon.online,suspend,False,False,Spam,False 160 | h5q.net,suspend,False,False,Inappropriate content,False 161 | head***.*afe,suspend,False,False,Inappropriate content,False 162 | hen***.**by,suspend,False,False,Inappropriate content,False 163 | honkwerx.tech,suspend,False,False,Hate speech,False 164 | hunk.city,suspend,False,False,Spam,False 165 | iddqd.social,suspend,False,False,Harassment,False 166 | imo***.**cs,suspend,False,False,Inappropriate content,False 167 | imou**.****sed,suspend,False,False,Inappropriate content,False 168 | instinctd.com,suspend,False,False,Third-party bots,False 169 | intkos.link,suspend,False,False,Hate speech,False 170 | inum***.*ove,suspend,False,False,Inappropriate content,False 171 | jaeger.website,suspend,False,False,Harassment,False 172 | kids******.fyi,suspend,False,False,Inappropriate content,False 173 | kids.0px.io,silence,False,False,Unmanaged spam,False 174 | kiss*****.moe,suspend,False,False,Inappropriate content,False 175 | kiwifarms.cc,suspend,False,False,Harassment,False 176 | kiwifarms.is,suspend,False,False,Harassment,False 177 | kiwifarms.net,suspend,False,False,Harassment,False 178 | kodo.*****res,suspend,False,False,Inappropriate content,False 179 | kog**.cc,suspend,False,False,Inappropriate content,False 180 | krdtube.org,silence,False,False,Misinformation,False 181 | kurosawa.moe,suspend,False,False,Hate speech,False 182 | lanue*********a.es,suspend,False,False,Hate speech,False 183 | leafposter.club,suspend,False,False,Hate speech,False 184 | leonardwong.dev,suspend,False,False,Third-party bots,False 185 | lewdi*******.com,suspend,False,False,Inappropriate content,False 186 | lewdi*******.vip,suspend,False,False,Inappropriate content,False 187 | lick.*****.win,suspend,False,False,Inappropriate content,False 188 | lit.t*******.xyz,suspend,False,False,Inappropriate content,False 189 | localtunnel.me,suspend,False,False,Spam,False 190 | lol****.*op,suspend,False,False,Inappropriate content,False 191 | lol*.****ch,suspend,False,False,Inappropriate content,False 192 | lol*.***za,suspend,False,False,Inappropriate content,False 193 | loli****.***ool,suspend,False,False,Inappropriate content,False 194 | loli***.****ork,suspend,False,False,Inappropriate content,False 195 | loli***.**cks,suspend,False,False,MAPs,False 196 | loli.****sed,suspend,False,False,Inappropriate content,False 197 | lus*.*oe,suspend,False,False,Inappropriate content ,False 198 | m.n1l.dev,silence,False,False,Unmanaged spam,False 199 | maps******.de,suspend,False,False,Inappropriate content,False 200 | mashtodon.alterracloud.com,suspend,False,False,Hate speech,False 201 | mast-serv.site,suspend,False,False,Spam,False 202 | mast.socialspill.com,suspend,False,False,Third-party bots,False 203 | mastinator.com,suspend,False,False,Third-party bots,False 204 | masto***.******.lol,suspend,False,False,Inappropriate content,False 205 | mastodon.sitejp.synology.me,silence,False,False,Unmanaged spam,False 206 | mastodon.social.fraudulent.link,suspend,False,False,Impersonation,False 207 | mastodon.socialspill.com,suspend,False,False,Third-party bots,False 208 | mastodonhub.com,suspend,False,False,Mirroring other Mastodon accounts without permission,False 209 | mela******.tk,suspend,False,False,Inappropriate content,False 210 | merovingian.club,suspend,False,False,Hate speech,False 211 | min**.**fe,suspend,False,False,Inappropriate content,False 212 | minds.com,silence,False,False,Hate speech,False 213 | mir***.**ty,suspend,False,False,Inappropriate content,False 214 | misskey-forkbomb.cf,suspend,False,False,Spam,False 215 | misskey.io,silence,False,False,Inappropriate content,False 216 | misskey.shunrin.com,silence,False,False,Unmanaged spam,False 217 | momostr.pink,suspend,False,False,Spam,False 218 | monk.**.****ness,suspend,False,False,Inappropriate content,False 219 | monstergirl.space,suspend,False,False,Hate speech,False 220 | mostr.pub,suspend,False,False,Spam,False 221 | mouse.services,suspend,False,False,Harassment,False 222 | mstdn.foxfam.club,silence,False,False,Third-party bots,False 223 | mugicha.club,suspend,False,False,Hate speech,False 224 | nate*******.org,suspend,False,False,Hate speech,False 225 | nateh******.**line,suspend,False,False,Hate speech,False 226 | nationalist.social,suspend,False,False,Hate speech,False 227 | nazi.social,suspend,False,False,Hate speech,False 228 | neck*****.xyz,suspend,False,False,Inappropriate content,False 229 | nee****.*op,suspend,False,False,Inappropriate content,False 230 | ngrok.io,suspend,False,False,Spam,False 231 | nicecrew.digital,suspend,False,False,Hate speech,False 232 | nni*.***ce,suspend,False,False,MAPs,False 233 | noagendasocial.com,silence,False,False,Harassment,False 234 | noauthority.social,suspend,False,False,Hate speech,False 235 | norwoodzero.net,suspend,False,False,Hate speech,False 236 | ns.auction,suspend,False,False,Hate speech,False 237 | nya.u*******.moe,suspend,False,False,Inappropriate content,False 238 | nyanide.com,suspend,False,False,Hate speech,False 239 | ob*.*h,suspend,False,False,Inappropriate content,False 240 | oddb****.***ine,suspend,False,False,Inappropriate content,False 241 | onion.social,silence,False,False,Spam,False 242 | orfodon.org,suspend,False,False,Third-party bots,False 243 | out****.*ip,suspend,False,False,Inappropriate content,False 244 | outpoa.st,suspend,False,False,Hate speech,False 245 | pac**.us,suspend,False,False,Inappropriate content,False 246 | paravielfalt.zone,suspend,False,False,Inappropriate content,False 247 | parcero.bond,suspend,False,False,Hate speech,False 248 | parcero.casa,suspend,False,False,Hate speech,False 249 | pawoo.net,suspend,False,False,Inappropriate content,False 250 | paypig.org,suspend,False,False,Hate speech,False 251 | ped*.****ol,suspend,False,False,MAPs,False 252 | pett****.art,suspend,False,False,Inappropriate content,False 253 | pieville.net,suspend,False,False,Harassment,False 254 | pika.moe,silence,False,False,Unmanaged spam,False 255 | pisskey.io,suspend,False,False,Hate speech,False 256 | pl.s*****.li,suspend,False,False,Inappropriate content,False 257 | pl.wy********.art,suspend,False,False,Inappropriate content,False 258 | plero**.*****.love,suspend,False,False,Inappropriate content,False 259 | plero**.*****.net,suspend,False,False,Inappropriate content,False 260 | pleroma.**********he.biz,suspend,False,False,Hate speech,False 261 | pleroma.adachi.party,suspend,False,False,Hate speech,False 262 | pleroma.fun,suspend,False,False,Hate speech,False 263 | pleroma.kitsunemimi.club,suspend,False,False,Hate speech,False 264 | pleroma.us,suspend,False,False,Hate speech,False 265 | poa.st,suspend,False,False,Hate speech,False 266 | poast.tv,suspend,False,False,Hate speech,False 267 | pooper.social,suspend,False,False,Hate speech,False 268 | poster.place,suspend,False,False,Hate speech,False 269 | postin*.*******.rocks,suspend,False,False,Hate speech,False 270 | pouque.net,suspend,False,False,Hate speech,False 271 | prete*******.biz,suspend,False,False,Inappropriate content,False 272 | pupp******.cc,suspend,False,False,Inappropriate content,False 273 | pupp******.org,suspend,False,False,Inappropriate content,False 274 | rakket.app,suspend,False,False,Hate speech,False 275 | rap*.*et,suspend,False,False,Inappropriate content,False 276 | rapem***.*****ions,suspend,False,False,Inappropriate content,False 277 | rapemeat.express,suspend,False,False,Inappropriate content,False 278 | raplst.town,suspend,False,False,Harassment,False 279 | rdrama.cc,suspend,False,False,Hate speech,False 280 | refusal.biz,suspend,False,False,Inappropriate content,False 281 | repl.co,suspend,False,False,Spam,False 282 | rot.***es,suspend,False,False,Inappropriate content,False 283 | ryona.agency,suspend,False,False,Hate speech,False 284 | schwartzwelt.xyz,suspend,False,False,Hate speech,False 285 | seal.cafe,suspend,False,False,Hate speech,False 286 | sexy****.xyz,suspend,False,False,Inappropriate content,False 287 | shitpisscum.mooo.com,suspend,False,False,Hate speech,False 288 | shitpost.cloud,suspend,False,False,Hate speech,False 289 | shitposte.rs,suspend,False,False,Hate speech,False 290 | shitposter.club,silence,False,False,Harassment,False 291 | shitposter.world,silence,False,False,Harassment,False 292 | shitposting.army,suspend,False,False,Hate speech,False 293 | sho**.***se,suspend,False,False,Inappropriate content,False 294 | shortstackran.ch,suspend,False,False,Hate speech,False 295 | shortstacksran.ch,suspend,False,False,Hate speech,False 296 | shot*****.xyz,suspend,False,False,Inappropriate content,False 297 | shrimpcam.pw,suspend,False,False,Third-party bots,False 298 | shrimpposter.club,suspend,False,False,Hate speech,False 299 | sinblr.com,silence,False,False,Spam,False 300 | skinheads.social,suspend,False,False,Hate speech,False 301 | skipp*******.com,suspend,False,False,Inappropriate content,False 302 | sleepy.cafe,suspend,False,False,Hate speech,False 303 | sneed.social,suspend,False,False,Hate speech,False 304 | social.********y.net,suspend,False,False,Inappropriate content,False 305 | social.freysa.ai,suspend,False,False,Spam,False 306 | social.lovingexpressions.net,suspend,False,False,Hate speech,False 307 | social.onlinesession.app,silence,False,False,Unmanaged spam,False 308 | social.quodverum.com,silence,False,False,Misinformation and conspiracy theories,False 309 | solagg.com,suspend,False,False,Spam,False 310 | sovran.social,suspend,False,False,Third-party bots,False 311 | spinster.xyz,suspend,False,False,Transphobia,False 312 | strelizia.net,suspend,False,False,Hate speech,False 313 | supernets.social,suspend,False,False,Hate speech,False 314 | switter.at,suspend,False,False,Preparing for announced shutdown,False 315 | t.l3r.me,suspend,False,False,Third-party bots,False 316 | tastingtraffic.net,suspend,False,False,Spam,False 317 | the.usualsuspects.lol,suspend,False,False,Hate speech,False 318 | theblab.org,suspend,False,False,Hate speech,False 319 | tickler.cc,silence,False,False,Unmanaged spam,False 320 | too****.*tf,suspend,False,False,Inappropriate content,False 321 | too****.*un,suspend,False,False,Inappropriate content,False 322 | toot.love,silence,False,False,Harassment,False 323 | trab****.com,suspend,False,False,Hate speech,False 324 | truthsocialpro.org,suspend,False,False,,False 325 | tum**.**wn,suspend,False,False,Inappropriate content,False 326 | tweet.pasture.moe,suspend,False,False,Third-party bots,False 327 | tweetbridge.kogasa.de,suspend,False,False,Third-party bots,False 328 | tweets.icu,suspend,False,False,Third-party bots,False 329 | twitiverse.com,suspend,False,False,Third-party bots,False 330 | twitter-bridge.cryobyte.net,suspend,False,False,Third-party bots,False 331 | twitter.1d4.us,suspend,False,False,Third-party bots,False 332 | twitter.activitypub.actor,suspend,False,False,Third-party bots,False 333 | twitter.cryobyte.net,suspend,False,False,Third-party bots,False 334 | twitter.doesnotexist.club,suspend,False,False,Third-party bots,False 335 | twitter.grants.cafe,suspend,False,False,Third-party bots,False 336 | twitter.piriklub.eu,suspend,False,False,Third-party bots,False 337 | twitterbridge.jannis.rocks,suspend,False,False,Third-party bots,False 338 | twtr.carnivore.social,suspend,False,False,Third-party bots,False 339 | twtr.ingeechat.party,suspend,False,False,Third-party bots,False 340 | twtr.plus,suspend,False,False,Third-party bots,False 341 | twtr.vrij.social,suspend,False,False,Third-party bots,False 342 | twtr.wappie.land,suspend,False,False,Third-party bots,False 343 | twtrbridge.de,suspend,False,False,Third-party bots,False 344 | twttr.yukineko.me,suspend,False,False,Third-party bots,False 345 | unfufadoo.net,silence,False,False,Spam,False 346 | urchan.org,suspend,False,False,Hate speech,False 347 | urweibo.com,silence,False,False,Unmanaged spam,False 348 | usasa.ky,silence,False,False,Unmanaged spam,False 349 | varis*******.net,suspend,False,False,Inappropriate content,False 350 | wagesofsinisdeath.com,suspend,False,False,Harassment,False 351 | waifu.social,suspend,False,False,Harassment,False 352 | waifuappreciation.club,suspend,False,False,Harassment,False 353 | webmasto.online,suspend,False,False,Spam,False 354 | weedis.life,suspend,False,False,Spam,False 355 | whit******.dog,suspend,False,False,Inappropriate content,False 356 | wolfgirl.bar,suspend,False,False,Hate speech,False 357 | workers.dev,suspend,False,False,Botnet,False 358 | x.good.news,suspend,False,False,Third-party bots,False 359 | yes***.*et,suspend,False,False,Inappropriate content,False 360 | yggdrasil.social,suspend,False,False,Hate speech,False 361 | yot**.***ks,suspend,False,False,Inappropriate content,False 362 | yot**.*ol,suspend,False,False,Inappropriate content,False 363 | you**.**ve,suspend,False,False,Inappropriate content,False 364 | youj*.*****ver,suspend,False,False,Inappropriate content,False 365 | yum***.cc,suspend,False,False,Inappropriate content,False 366 | zet***.**ub,suspend,False,False,Inappropriate content,False 367 | zztails.gay,suspend,False,False,Hate speech,False 368 | -------------------------------------------------------------------------------- /blocklists/mastodon/README.md: -------------------------------------------------------------------------------- 1 | # Blocklist Index 2 | 3 | **NOTE:** If importing these files for Mastodon, be sure to use the files in the `mastodon` folder. 4 | 5 | * `_unified_tier0_blocklist.csv` - Combines blocks from all T0 sources (Seirdy, Gardenfence, IFTAS DNI) into a unified Tier 0 file. 6 | * `seirdy-tier0.csv` - The original Tier0 file. Algorithmic *and* curated. See Seirdy's [Fediverse Blocklists](https://seirdy.one/posts/2023/05/02/fediverse-blocklists/) for notes about the process behind creating it. 7 | * `gardenfence.csv` - A mirror of the [Gardenfence](https://gardenfence.github.io/) Tier 0 file. 8 | * `dni.csv` - IFTAS Do Not Interact (DNI). 9 | 10 | **Subfolders:** 11 | 12 | * `mastodon` - identical blocklist data, but with proper mastodon headers in format `#domain,#severity...` etc. 13 | -------------------------------------------------------------------------------- /blocklists/mastodon/_unified_tier0_blocklist.csv: -------------------------------------------------------------------------------- 1 | #domain,#severity,#reject_media,#reject_reports,#public_comment,#obfuscate 2 | 076.ne.jp,suspend,false,false,hate-associated,false 3 | 101010.pl,suspend,false,false,,false 4 | 10minutepleroma.com,suspend,false,false,,false 5 | 13bells.com,suspend,false,false,iftas:hate-speech;online-harassment,true 6 | 1611.social,suspend,false,false,"anti-lgbtq, hate-associated, hate-speech, iftas:hate-speech;online-harassment",true 7 | 4aem.com,suspend,false,false,,false 8 | 5dollah.click,suspend,false,false,"anti-lgbtq, harassment, hate-associated, hate-speech, racism",false 9 | 80percent.social,suspend,false,false,,false 10 | 8777.ch,suspend,false,false,,false 11 | 9yo.punipoka.pink,suspend,false,false,iftas:csam,true 12 | abraham.su,suspend,false,false,,false 13 | absolutelyproprietary.org,suspend,false,false,,false 14 | activitypub-proxy.cf,suspend,false,false,iftas:service-abuse,true 15 | activitypub-troll.cf,suspend,false,false,"dos, harassment, spam, iftas:service-abuse",true 16 | adachi.party,suspend,false,false,"harassment, hate-associated, hate-speech, racism",false 17 | adtension.com,suspend,false,false,,false 18 | aethy.com,suspend,false,false,"inappropriate, underage, iftas:csam",true 19 | agdersam.no,suspend,false,false,,false 20 | ai.wiki,suspend,false,false,,false 21 | alive.bar,suspend,false,false,,false 22 | alteregocreations.com,suspend,false,false,,false 23 | ancreport.com,suspend,false,false,,false 24 | ancreport.xyz,suspend,false,false,,false 25 | angrytoday.com,suspend,false,false,,false 26 | annihilation.social,suspend,false,false,"harassment, hate-associated, hate-speech",false 27 | anon-kenkai.com,suspend,false,false,,false 28 | ap.invalid,suspend,false,false,iftas:canary,true 29 | asbestos.cafe,suspend,false,false,"alt-right, anti-lgbtq, hate-associated, hate-speech, racism, underage",false 30 | asimon.org,suspend,false,false,,false 31 | awakari.app,suspend,false,false,,false 32 | awakari.com,suspend,false,false,,false 33 | badly.co,suspend,false,false,,false 34 | bae.st,suspend,false,false,"alt-right, anti-lgbtq, hate-associated, hate-speech, inappropriate, nazism, racism, iftas:hate-speech;online-harassment",true 35 | banepo.st,suspend,false,false,"antivax, harassment, hate-associated",false 36 | baraag.net,suspend,false,false,"hate-associated, inappropriate, underage, iftas:csam",true 37 | bassam.social,suspend,false,false,,false 38 | battlepenguin.video,suspend,false,false,,false 39 | beefyboys.club,suspend,false,false,,false 40 | beefyboys.win,suspend,false,false,"hate-associated, hate-speech, iftas:hate-speech",true 41 | beepboop.ga,suspend,false,false,,false 42 | berserker.town,suspend,false,false,"alt-right, anti-lgbtq, fascism, hate-speech",false 43 | bgzashtita.es,suspend,false,false,,false 44 | bikeshed.party,suspend,false,false,,false 45 | bird.makeup,suspend,false,false,"bots, twitter",false 46 | birds.garden,suspend,false,false,,false 47 | bitcointv.com,suspend,false,false,,false 48 | blob.cat,suspend,false,false,"harassment, porn",false 49 | blockedur.mom,suspend,false,false,,false 50 | boymoder.biz,suspend,false,false,"harassment, hate-associated, hate-speech, racism, underage, iftas:online-harassment",true 51 | brainsoap.net,suspend,false,false,,false 52 | breastmilk.club,suspend,false,false,"anti-lgbtq, harassment, hate-associated, hate-speech, racism",false 53 | brighteon.social,suspend,false,false,"conspiracy, iftas:disinformation",true 54 | bungle.online,suspend,false,false,"hate-associated, racism",false 55 | burger.rodeo,suspend,false,false,,false 56 | burggit.moe,suspend,false,false,,false 57 | cachapa.cc,suspend,false,false,,false 58 | cachapa.xyz,suspend,false,false,"hate-speech, racism",false 59 | caekis.love,suspend,false,false,,false 60 | calobar.club,suspend,false,false,,false 61 | cannibal.cafe,suspend,false,false,"inappropriate, underage",false 62 | catposter.club,suspend,false,false,,false 63 | cawfee.club,suspend,false,false,"hate-associated, hate-speech, iftas:csam",true 64 | childlove.space,suspend,false,false,iftas:csam,true 65 | childlove.su,suspend,false,false,iftas:csam,true 66 | clew.lol,suspend,false,false,"hate-associated, hate-speech, racism, iftas:hate-speech;online-harassment",true 67 | clubcyberia.co,suspend,false,false,"harassment, hate-speech, racism",false 68 | clube.social,suspend,false,false,,false 69 | collapsitarian.io,suspend,false,false,"alt-right, hate-associated",false 70 | contrapointsfan.club,suspend,false,false,"hate-associated, hate-speech",false 71 | coolsite.win,suspend,false,false,,false 72 | cottoncandy.cafe,suspend,false,false,iftas:csam,true 73 | crlf.ninja,suspend,false,false,,false 74 | crucible.world,suspend,false,false,,false 75 | cryptodon.lol,suspend,false,false,crypto,false 76 | cryptotooter.com,suspend,false,false,,false 77 | cum.camp,suspend,false,false,"harassment, inappropriate",false 78 | cum.salon,suspend,false,false,"hate-speech, porn, iftas:hate-speech;online-harassment;explicit-content",true 79 | cunnyborea.space,suspend,false,false,"antisemitism, hate-speech, inappropriate, racism, underage, iftas:hate-speech;online-harassment;explicit-content",true 80 | cunnyborea.top,suspend,false,false,"hate-speech, inappropriate, racism, spam, underage, iftas:hate-speech;online-harassment;explicit-content",true 81 | cutefunny.net,suspend,false,false,"hate-speech, inappropriate, racism, spam, underage",false 82 | cybercriminal.eu,suspend,false,false,"harassment, hate-associated, spam",false 83 | cyberretards.xyz,suspend,false,false,,false 84 | cyberstorm.one,suspend,false,false,,false 85 | d-fens.systems,suspend,false,false,,false 86 | danksquad.org,suspend,false,false,,false 87 | daspr.io,suspend,false,false,,false 88 | decayable.ink,suspend,false,false,"alt-right, hate-associated, hate-speech, racism",false 89 | declin.eu,suspend,false,false,,false 90 | dembased.xyz,suspend,false,false,,false 91 | detroitriotcity.com,suspend,false,false,"anti-lgbtq, harassment, hate-speech, racism, iftas:hate-speech;brigading;online-harassment",true 92 | dev-wiki.de,suspend,false,false,,false 93 | djsumdog.com,suspend,false,false,,false 94 | dobbs.town,suspend,false,false,,false 95 | drinkanddrive.africa,suspend,false,false,,false 96 | drow.be,suspend,false,false,,false 97 | ebin.club,suspend,false,false,,false 98 | eientei.org,suspend,false,false,"hate-speech, racism, iftas:hate-speech",true 99 | endtimebelievers.com,suspend,false,false,,false 100 | enjoyer.network,suspend,false,false,,false 101 | eskimo.com,suspend,false,false,,false 102 | eveningzoo.club,suspend,false,false,"alt-right, antisemitism, conspiracy, fascism, hate-speech, racism, iftas:hate-speech;disinformation",true 103 | fbxl.net,suspend,false,false,,false 104 | federated.fun,suspend,false,false,"anti-lgbtq, hate-speech",false 105 | fediverse-lite.com,suspend,false,false,,false 106 | fedposters.club,suspend,false,false,,false 107 | feministwiki.org,suspend,false,false,,false 108 | feral.cafe,suspend,false,false,,false 109 | fightthis.net,suspend,false,false,hate-associated,false 110 | firedragonstudios.com,suspend,false,false,,false 111 | fluf.club,suspend,false,false,"hate-associated, hate-speech",false 112 | foxgirl.lol,suspend,false,false,,false 113 | fr13nd5.com,suspend,false,false,,false 114 | freak.university,suspend,false,false,"inappropriate, underage",false 115 | freeatlantis.com,suspend,false,false,"conspiracy, hate-speech, misinformation, iftas:hate-speech;online-harassment;disinformation",true 116 | freecumextremist.com,suspend,false,false,iftas:hate-speech;online-harassment;explicit-content,true 117 | freesoftwareextremist.com,suspend,false,false,"alt-right, hate-associated, hate-speech",false 118 | freespeech.club,suspend,false,false,,false 119 | freespeech.group,suspend,false,false,,false 120 | freespeechextremist.com,suspend,false,false,"hate-speech, iftas:hate-speech;online-harassment;disinformation",true 121 | freetalklive.com,suspend,false,false,,false 122 | freethinkers.lgbt,suspend,false,false,,false 123 | freezepeach.xyz,suspend,false,false,,false 124 | frennet.xyz,suspend,false,false,"hate-associated, hate-speech",false 125 | froth.zone,suspend,false,false,,false 126 | fsebugoutzone.org,suspend,false,false,"hate-speech, racism",false 127 | gab.ai,suspend,false,false,,false 128 | gabe.rocks,suspend,false,false,,false 129 | gameliberty.club,suspend,false,false,"bots, hate-speech, racism, iftas:csam;explicit-content",true 130 | gamers.exposed,suspend,false,false,,false 131 | gearlandia.haus,suspend,false,false,"alt-right, anti-lgbtq, racism",false 132 | gegenstimme.tv,suspend,false,false,iftas:hate-speech;disinformation,true 133 | genderheretics.xyz,suspend,false,false,"anti-lgbtq, hate-speech",false 134 | gensokyo.club,suspend,false,false,,false 135 | gentoo.live,suspend,false,false,,false 136 | geofront.rocks,suspend,false,false,"hate-speech, nazism, racism",false 137 | gh0st.live,suspend,false,false,,false 138 | ghetti.monster,suspend,false,false,"antisemitism, hate-speech, inappropriate, racism, underage",false 139 | gleasonator.com,suspend,false,false,anti-lgbtq,false 140 | glee.li,suspend,false,false,"harassment, hate-speech, racism, iftas:troll;online-harassment",true 141 | glindr.org,suspend,false,false,,false 142 | glowers.club,suspend,false,false,,false 143 | gorf.pub,suspend,false,false,,false 144 | goyim.social,suspend,false,false,,false 145 | h5q.net,suspend,false,false,"inappropriate, porn, underage, iftas:csam",true 146 | haeder.net,suspend,false,false,,false 147 | hallsofamenti.io,suspend,false,false,,false 148 | handholding.io,suspend,false,false,,false 149 | harpy.faith,suspend,false,false,,false 150 | helladoge.com,suspend,false,false,,false 151 | hendrixgames.com,suspend,false,false,,false 152 | hentai.baby,suspend,false,false,iftas:csam,true 153 | hidamari.apartments,suspend,false,false,"alt-right, nazism",false 154 | hitchhiker.social,suspend,false,false,,false 155 | honkwerx.tech,suspend,false,false,,false 156 | husk.site,suspend,false,false,"harassment, hate-speech, racism",false 157 | icod.de,suspend,false,false,,false 158 | iddqd.social,suspend,false,false,"harassment, hate-associated, nazism",false 159 | ignorelist.com,suspend,false,false,"dos, spam",false 160 | imouto.exposed,suspend,false,false,iftas:csam,true 161 | imouto.pics,suspend,false,false,iftas:csam,true 162 | intkos.link,suspend,false,false,"alt-right, antisemitism, hate-speech",false 163 | isekco.re,suspend,false,false,,false 164 | justbros.xyz,suspend,false,false,,false 165 | kawa-kun.com,suspend,false,false,hate-associated,false 166 | kbin.cafe,suspend,false,false,iftas:csam,true 167 | kenhbit.com,suspend,false,false,,false 168 | kitsunemimi.club,suspend,false,false,"hate-speech, racism",false 169 | kiwifarms.cc,suspend,false,false,"alt-right, anti-lgbtq, harassment, racism, iftas:hate-speech;online-harassment",true 170 | kiwifarms.is,suspend,false,false,iftas:hate-speech;online-harassment,true 171 | kiwifarms.net,suspend,false,false,,false 172 | kompost.cz,suspend,false,false,"hate-associated, hate-speech, nazism, racism",false 173 | krackhou.se,suspend,false,false,,false 174 | kurosawa.moe,suspend,false,false,"harassment, hate-associated, hate-speech, racism, underage",false 175 | kyaruc.moe,suspend,false,false,,false 176 | kys.moe,suspend,false,false,,false 177 | lain.gay,suspend,false,false,,false 178 | lain.la,suspend,false,false,hate-associated,false 179 | lain.sh,suspend,false,false,,false 180 | leafposter.club,suspend,false,false,"hate-associated, hate-speech",false 181 | letsalllovela.in,suspend,false,false,,false 182 | lewdieheaven.com,suspend,false,false,"inappropriate, underage",false 183 | liberdon.com,suspend,false,false,,false 184 | librem.one,suspend,false,false,,false 185 | librenet.co.za,suspend,false,false,,false 186 | librosphere.fr,suspend,false,false,,false 187 | ligma.pro,suspend,false,false,alt-right,false 188 | logografos.com,suspend,false,false,,false 189 | loli.church,suspend,false,false,"alt-right, antisemitism, hate-speech, inappropriate, racism, underage, iftas:csam",true 190 | lolicon.rocks,suspend,false,false,"hate-speech, underage, iftas:csam",true 191 | lolicon.win,suspend,false,false,,false 192 | lolison.network,suspend,false,false,"inappropriate, underage, iftas:csam",true 193 | lolison.top,suspend,false,false,"inappropriate, underage",false 194 | longyap.name.my,suspend,false,false,,false 195 | loveforlandlords.com,suspend,false,false,,false 196 | lovingexpressions.net,suspend,false,false,"hate-associated, hate-speech, nazism, racism",false 197 | magicka.org,suspend,false,false,,false 198 | majestic12.airforce,suspend,false,false,,false 199 | makemysarcophagus.com,suspend,false,false,,false 200 | maladaptive.art,suspend,false,false,,false 201 | mapsupport.de,suspend,false,false,"harassment, inappropriate, underage",false 202 | marsey.club,suspend,false,false,,false 203 | mast-serv.site,suspend,false,false,iftas:spam;coordinated-inauthentic-behaviour,true 204 | mastertibbles.co.uk,suspend,false,false,,false 205 | masthead.social,suspend,false,false,,false 206 | mastinator.com,suspend,false,false,"bots, harassment, iftas:service-abuse",true 207 | mastod.no,suspend,false,false,,false 208 | mastodon.cf,suspend,false,false,,false 209 | mastodon.la,suspend,false,false,,false 210 | mastodong.lol,suspend,false,false,,false 211 | merovingian.club,suspend,false,false,"anti-lgbtq, hate-associated, hate-speech",false 212 | midwaytrades.com,suspend,false,false,"alt-right, anti-lgbtq, hate-associated",false 213 | miku-enthusiast.club,suspend,false,false,,false 214 | milker.cafe,suspend,false,false,,false 215 | minds.com,suspend,false,false,,false 216 | minidisc.tokyo,suspend,false,false,,false 217 | mirr0r.city,suspend,false,false,"hate-associated, inappropriate, underage",false 218 | misono-ya.info,suspend,false,false,,false 219 | misskey-forkbomb.cf,suspend,false,false,"dos, spam, iftas:service-abuse",true 220 | monads.online,suspend,false,false,,false 221 | mooo.com,suspend,false,false,,false 222 | morale.ch,suspend,false,false,,false 223 | mostr.pub,suspend,false,false,"alt-right, hate-speech, spam",false 224 | mouse.services,suspend,false,false,"harassment, hate-associated",false 225 | mrhands.horse,suspend,false,false,,false 226 | mstdn.jp,suspend,false,false,,false 227 | mugicha.club,suspend,false,false,"hate-speech, racism",false 228 | mulmeyun.church,suspend,false,false,,false 229 | nalocal519.social,suspend,false,false,,false 230 | narrativerry.xyz,suspend,false,false,,false 231 | natehiggers.online,suspend,false,false,iftas:troll;online-harassment,true 232 | nationalist.social,suspend,false,false,"alt-right, hate-speech, nazism, racism",false 233 | nazi.social,suspend,false,false,,false 234 | needs.vodka,suspend,false,false,,false 235 | neenster.org,suspend,false,false,,false 236 | nekocave.xyz,suspend,false,false,,false 237 | nekos.cafe,suspend,false,false,,false 238 | neomobius.com,suspend,false,false,iftas:csam,true 239 | netzsphaere.xyz,suspend,false,false,,false 240 | nicecrew.digital,suspend,false,false,"anti-lgbtq, hate-speech, racism, iftas:hate-speech;brigading;online-harassment",true 241 | nightshift.social,suspend,false,false,"antivax, conspiracy, harassment, hate-associated, hate-speech, racism",false 242 | nixnet.social,suspend,false,false,,false 243 | nnia.cc,suspend,false,false,,false 244 | nnia.space,suspend,false,false,"alt-right, underage",false 245 | noagendasocial.com,suspend,false,false,"alt-right, hate-speech",false 246 | noagendatube.com,suspend,false,false,,false 247 | noauthority.social,suspend,false,false,"alt-right, anti-lgbtq, conspiracy, harassment, hate-speech, racism",false 248 | nobodyhasthe.biz,suspend,false,false,"anti-lgbtq, hate-speech",false 249 | norwoodzero.net,suspend,false,false,"anti-lgbtq, hate-associated, hate-speech, nazism, racism",false 250 | novoa.nagoya,suspend,false,false,"antisemitism, harassment, hate-associated, hate-speech, racism",false 251 | nyanide.com,suspend,false,false,"anti-lgbtq, harassment, hate-speech, nazism, racism",false 252 | obo.sh,suspend,false,false,"alt-right, inappropriate, underage, iftas:csam",true 253 | occultist.space,suspend,false,false,,false 254 | oddballs.online,suspend,false,false,"inappropriate, underage",false 255 | onionfarms.org,suspend,false,false,,false 256 | otakufarms.com,suspend,false,false,,false 257 | oti.st,suspend,false,false,,false 258 | outpoa.st,suspend,false,false,"alt-right, hate-speech, racism",false 259 | outrnat.nl,suspend,false,false,,false 260 | paravielfalt.zone,suspend,false,false,"inappropriate, underage",false 261 | parcero.bond,suspend,false,false,"hate-speech, racism",false 262 | parcero.casa,suspend,false,false,"harassment, hate-speech",false 263 | pawlicker.com,suspend,false,false,,false 264 | pawoo.net,suspend,false,false,"inappropriate, underage, iftas:csam",true 265 | paypig.org,suspend,false,false,,false 266 | pedo.school,suspend,false,false,"underage, iftas:csam",true 267 | peervideo.club,suspend,false,false,,false 268 | peister.org,suspend,false,false,,false 269 | pettanko.art,suspend,false,false,iftas:csam,true 270 | piazza.today,suspend,false,false,,false 271 | pibvt.net,suspend,false,false,"inappropriate, underage",false 272 | pieville.net,suspend,false,false,"harassment, hate-speech, nazism, iftas:hate-speech",true 273 | pisskey.io,suspend,false,false,"hate-associated, hate-speech",false 274 | pkteerium.xyz,suspend,false,false,"alt-right, conspiracy",false 275 | plagu.ee,suspend,false,false,,false 276 | poa.st,suspend,false,false,"alt-right, hate-speech, nazism, racism, iftas:hate-speech;online-harassment",true 277 | poast.org,suspend,false,false,iftas:hate-speech;online-harassment,true 278 | poast.tv,suspend,false,false,iftas:tvec,true 279 | pone.social,suspend,false,false,"anti-lgbtq, hate-associated, racism, underage",false 280 | pooper.social,suspend,false,false,,false 281 | poridge.club,suspend,false,false,,false 282 | poster.place,suspend,false,false,"alt-right, anti-lgbtq, hate-associated, hate-speech, nazism, racism, iftas:hate-speech;online-harassment",true 283 | pouque.net,suspend,false,false,,false 284 | preteengirls.biz,suspend,false,false,,false 285 | privex.social,suspend,false,false,,false 286 | probablyfreespeech.com,suspend,false,false,,false 287 | prospeech.space,suspend,false,false,,false 288 | pseudo-whiskey.bar,suspend,false,false,,false 289 | psion.co,suspend,false,false,,false 290 | pube.tk,suspend,false,false,,false 291 | quanta.wiki,suspend,false,false,"alt-right, anti-lgbtq, hate-associated",false 292 | quodverum.com,suspend,false,false,,false 293 | r18.social,suspend,false,false,,false 294 | raccoon.quest,suspend,false,false,,false 295 | rage.lol,suspend,false,false,,false 296 | rakket.app,suspend,false,false,,false 297 | rape.pet,suspend,false,false,"inappropriate, underage",false 298 | rapefeminists.network,suspend,false,false,,false 299 | rapemeat.express,suspend,false,false,iftas:troll;online-harassment,true 300 | rapemeat.solutions,suspend,false,false,"hate-speech, inappropriate, underage, iftas:troll;online-harassment",true 301 | ravergram.club,suspend,false,false,,false 302 | rayci.st,suspend,false,false,,false 303 | rcsocial.net,suspend,false,false,,false 304 | rdrama.cc,suspend,false,false,"anti-lgbtq, harassment, hate-speech, racism, iftas:hate-speech;online-harassment",true 305 | rebelbase.site,suspend,false,false,,false 306 | refusal.biz,suspend,false,false,"alt-right, hate-speech, inappropriate, underage",false 307 | repl.co,suspend,false,false,"dos, spam, iftas:service-abuse;spam",true 308 | republic.red,suspend,false,false,"alt-right, anti-lgbtq, conspiracy, fascism, hate-speech",false 309 | rojogato.com,suspend,false,false,"harassment, hate-speech",false 310 | rot.gives,suspend,false,false,"hate-speech, inappropriate, underage",false 311 | roysbeer.place,suspend,false,false,,false 312 | ruinouspowe.rs,suspend,false,false,,false 313 | ryona.agency,suspend,false,false,"anti-lgbtq, hate-speech, iftas:troll;online-harassment",true 314 | sad.cab,suspend,false,false,,false 315 | satoshishop.de,suspend,false,false,,false 316 | saynoto.lgbt,suspend,false,false,,false 317 | schwartzwelt.xyz,suspend,false,false,"hate-associated, hate-speech",false 318 | scots.network,suspend,false,false,"anti-lgbtq, hate-speech",false 319 | seal.cafe,suspend,false,false,"alt-right, anti-lgbtq, antisemitism, harassment, hate-associated, hate-speech, racism, iftas:troll;online-harassment",true 320 | seda.social,suspend,false,false,iftas:spam,true 321 | sharivegas.com,suspend,false,false,,false 322 | shaw.app,suspend,false,false,,false 323 | shigusegubu.club,suspend,false,false,,false 324 | shitpost.cloud,suspend,false,false,"alt-right, harassment, hate-speech, racism, iftas:hate-speech;online-harassment",true 325 | shitposter.club,suspend,false,false,"alt-right, harassment, iftas:hate-speech;explicit-content",true 326 | shitposter.world,suspend,false,false,"alt-right, harassment",false 327 | shortstacksran.ch,suspend,false,false,"antisemitism, hate-associated, hate-speech, racism",false 328 | shota.house,suspend,false,false,"alt-right, inappropriate, underage, iftas:csam",true 329 | shota.social,suspend,false,false,,false 330 | shotatube.xyz,suspend,false,false,,false 331 | shpposter.club,suspend,false,false,,false 332 | shrimpcam.pw,suspend,false,false,,false 333 | shrimpposter.club,suspend,false,false,"harassment, hate-associated, hate-speech",false 334 | silliness.observer,suspend,false,false,,false 335 | skinheads.eu,suspend,false,false,,false 336 | skinheads.io,suspend,false,false,,false 337 | skinheads.social,suspend,false,false,"hate-associated, hate-speech, nazism",false 338 | skinheads.uk,suspend,false,false,,false 339 | skippers-bin.com,suspend,false,false,"inappropriate, underage",false 340 | skyshanty.xyz,suspend,false,false,,false 341 | slash.cl,suspend,false,false,,false 342 | sleepy.cafe,suspend,false,false,,false 343 | smuglo.li,suspend,false,false,,false 344 | sneak.berlin,suspend,false,false,,false 345 | sneed.social,suspend,false,false,"anti-lgbtq, antisemitism, fascism, hate-speech, racism",false 346 | social.cutefunny.net,suspend,false,false,iftas:spam,true 347 | someotherguy.xyz,suspend,false,false,,false 348 | sonichu.com,suspend,false,false,,false 349 | soykaf.com,suspend,false,false,,false 350 | spinster.xyz,suspend,false,false,anti-lgbtq,false 351 | springbo.cc,suspend,false,false,"alt-right, anti-lgbtq, harassment, racism",false 352 | starnix.network,suspend,false,false,,false 353 | startrekshitposting.com,suspend,false,false,iftas:spam,true 354 | stereophonic.space,suspend,false,false,"alt-right, harassment, hate-associated",false 355 | strelizia.net,suspend,false,false,"hate-speech, underage",false 356 | subs4social.xyz,suspend,false,false,,false 357 | supernets.social,suspend,false,false,"alt-right, hate-speech, racism",false 358 | taihou.website,suspend,false,false,,false 359 | tastingtraffic.net,suspend,false,false,"anti-lgbtq, spam",false 360 | teci.world,suspend,false,false,"alt-right, hate-associated",false 361 | terrible.place,suspend,false,false,,false 362 | thebag.social,suspend,false,false,,false 363 | theblab.org,suspend,false,false,"hate-speech, racism",false 364 | thechimp.zone,suspend,false,false,,false 365 | thenobody.club,suspend,false,false,,false 366 | thepostearthdestination.com,suspend,false,false,,false 367 | theres.life,suspend,false,false,,false 368 | tkammer.de,suspend,false,false,,false 369 | touha.me,suspend,false,false,,false 370 | troll.cafe,suspend,false,false,,false 371 | trumpislovetrumpis.life,suspend,false,false,,false 372 | truthsocial.co.in,suspend,false,false,alt-right,false 373 | tummy.town,suspend,false,false,,false 374 | twi.social,suspend,false,false,iftas:csam,true 375 | tyil.nl,suspend,false,false,,false 376 | ua-fediland.de,suspend,false,false,,false 377 | unbound.social,suspend,false,false,,false 378 | unperson.us,suspend,false,false,,false 379 | unsafe.space,suspend,false,false,,false 380 | urspringer.de,suspend,false,false,,false 381 | usualsuspects.lol,suspend,false,false,"anti-lgbtq, harassment, hate-speech",false 382 | uwu.social,suspend,false,false,,false 383 | vampiremaid.cafe,suspend,false,false,,false 384 | varishangout.net,suspend,false,false,"anti-lgbtq, hate-speech, inappropriate, racism, iftas:csam;hate-speech;online-harassment",true 385 | vladtepesblog.com,suspend,false,false,,false 386 | waifuism.life,suspend,false,false,,false 387 | webmasto.online,suspend,false,false,iftas:spam;coordinated-inauthentic-behaviour,true 388 | weeaboo.space,suspend,false,false,,false 389 | whinge.house,suspend,false,false,,false 390 | whinge.town,suspend,false,false,"anti-lgbtq, hate-associated, racism",false 391 | whitewomen.dog,suspend,false,false,"hate-associated, hate-speech, inappropriate, racism, underage",false 392 | wideboys.org,suspend,false,false,"anti-lgbtq, harassment, hate-associated, racism",false 393 | wolfgirl.bar,suspend,false,false,"antisemitism, harassment, hate-speech, racism",false 394 | workers.dev,suspend,false,false,,false 395 | writehere.is,suspend,false,false,,false 396 | xn--p1abe3d.xn--80asehdb,suspend,false,false,,false 397 | xscape.club,suspend,false,false,iftas:csam,true 398 | yesmap.net,suspend,false,false,,false 399 | yggdrasil.social,suspend,false,false,"anti-lgbtq, hate-speech, iftas:hate-speech",true 400 | youjo.love,suspend,false,false,"antisemitism, antivax, inappropriate, underage",false 401 | zhub.link,suspend,false,false,,false 402 | zztails.gay,suspend,false,false,"alt-right, hate-speech, racism",false 403 | -------------------------------------------------------------------------------- /blocklists/mastodon/dni.csv: -------------------------------------------------------------------------------- 1 | #domain,#severity,#reject_media,#reject_reports,#public_comment,#obfuscate 2 | 13bells.com,suspend,false,false,iftas:hate-speech;online-harassment,true 3 | 1611.social,suspend,false,false,iftas:hate-speech;online-harassment,true 4 | 9yo.punipoka.pink,suspend,false,false,iftas:csam,true 5 | activitypub-proxy.cf,suspend,false,false,iftas:service-abuse,true 6 | activitypub-troll.cf,suspend,false,false,iftas:service-abuse,true 7 | aethy.com,suspend,false,false,iftas:csam,true 8 | ap.invalid,suspend,false,false,iftas:canary,true 9 | bae.st,suspend,false,false,iftas:hate-speech;online-harassment,true 10 | baraag.net,suspend,false,false,iftas:csam,true 11 | beefyboys.win,suspend,false,false,iftas:hate-speech,true 12 | boymoder.biz,suspend,false,false,iftas:online-harassment,true 13 | brighteon.social,suspend,false,false,iftas:disinformation,true 14 | cawfee.club,suspend,false,false,iftas:csam,true 15 | childlove.space,suspend,false,false,iftas:csam,true 16 | childlove.su,suspend,false,false,iftas:csam,true 17 | clew.lol,suspend,false,false,iftas:hate-speech;online-harassment,true 18 | cottoncandy.cafe,suspend,false,false,iftas:csam,true 19 | cum.salon,suspend,false,false,iftas:hate-speech;online-harassment;explicit-content,true 20 | cunnyborea.space,suspend,false,false,iftas:hate-speech;online-harassment;explicit-content,true 21 | cunnyborea.top,suspend,false,false,iftas:hate-speech;online-harassment;explicit-content,true 22 | detroitriotcity.com,suspend,false,false,iftas:hate-speech;brigading;online-harassment,true 23 | eientei.org,suspend,false,false,iftas:hate-speech,true 24 | eveningzoo.club,suspend,false,false,iftas:hate-speech;disinformation,true 25 | freeatlantis.com,suspend,false,false,iftas:hate-speech;online-harassment;disinformation,true 26 | freecumextremist.com,suspend,false,false,iftas:hate-speech;online-harassment;explicit-content,true 27 | freespeechextremist.com,suspend,false,false,iftas:hate-speech;online-harassment;disinformation,true 28 | gameliberty.club,suspend,false,false,iftas:csam;explicit-content,true 29 | gegenstimme.tv,suspend,false,false,iftas:hate-speech;disinformation,true 30 | glee.li,suspend,false,false,iftas:troll;online-harassment,true 31 | h5q.net,suspend,false,false,iftas:csam,true 32 | hentai.baby,suspend,false,false,iftas:csam,true 33 | imouto.exposed,suspend,false,false,iftas:csam,true 34 | imouto.pics,suspend,false,false,iftas:csam,true 35 | kbin.cafe,suspend,false,false,iftas:csam,true 36 | kiwifarms.cc,suspend,false,false,iftas:hate-speech;online-harassment,true 37 | kiwifarms.is,suspend,false,false,iftas:hate-speech;online-harassment,true 38 | loli.church,suspend,false,false,iftas:csam,true 39 | lolicon.rocks,suspend,false,false,iftas:csam,true 40 | lolison.network,suspend,false,false,iftas:csam,true 41 | mast-serv.site,suspend,false,false,iftas:spam;coordinated-inauthentic-behaviour,true 42 | mastinator.com,suspend,false,false,iftas:service-abuse,true 43 | misskey-forkbomb.cf,suspend,false,false,iftas:service-abuse,true 44 | natehiggers.online,suspend,false,false,iftas:troll;online-harassment,true 45 | neomobius.com,suspend,false,false,iftas:csam,true 46 | nicecrew.digital,suspend,false,false,iftas:hate-speech;brigading;online-harassment,true 47 | obo.sh,suspend,false,false,iftas:csam,true 48 | pawoo.net,suspend,false,false,iftas:csam,true 49 | pedo.school,suspend,false,false,iftas:csam,true 50 | pettanko.art,suspend,false,false,iftas:csam,true 51 | pieville.net,suspend,false,false,iftas:hate-speech,true 52 | poa.st,suspend,false,false,iftas:hate-speech;online-harassment,true 53 | poast.org,suspend,false,false,iftas:hate-speech;online-harassment,true 54 | poast.tv,suspend,false,false,iftas:tvec,true 55 | poster.place,suspend,false,false,iftas:hate-speech;online-harassment,true 56 | rapemeat.express,suspend,false,false,iftas:troll;online-harassment,true 57 | rapemeat.solutions,suspend,false,false,iftas:troll;online-harassment,true 58 | rdrama.cc,suspend,false,false,iftas:hate-speech;online-harassment,true 59 | repl.co,suspend,false,false,iftas:service-abuse;spam,true 60 | ryona.agency,suspend,false,false,iftas:troll;online-harassment,true 61 | ryona.agency,suspend,false,false,iftas:troll;online-harassment,true 62 | seal.cafe,suspend,false,false,iftas:troll;online-harassment,true 63 | seda.social,suspend,false,false,iftas:spam,true 64 | shitpost.cloud,suspend,false,false,iftas:hate-speech;online-harassment,true 65 | shitposter.club,suspend,false,false,iftas:hate-speech;explicit-content,true 66 | shota.house,suspend,false,false,iftas:csam,true 67 | social.cutefunny.net,suspend,false,false,iftas:spam,true 68 | startrekshitposting.com,suspend,false,false,iftas:spam,true 69 | twi.social,suspend,false,false,iftas:csam,true 70 | varishangout.net,suspend,false,false,iftas:csam;hate-speech;online-harassment,true 71 | webmasto.online,suspend,false,false,iftas:spam;coordinated-inauthentic-behaviour,true 72 | xscape.club,suspend,false,false,iftas:csam,true 73 | yggdrasil.social,suspend,false,false,iftas:hate-speech,true -------------------------------------------------------------------------------- /blocklists/mastodon/gardenfence.csv: -------------------------------------------------------------------------------- 1 | #domain,#severity,#reject_media,#reject_reports,#public_comment,#obfuscate 2 | 076.ne.jp,suspend,false,false,hate-associated,false 3 | 1611.social,suspend,false,false,"anti-lgbtq, hate-associated, hate-speech",false 4 | 5dollah.click,suspend,false,false,"anti-lgbtq, harassment, hate-associated, hate-speech, racism",false 5 | activitypub-troll.cf,suspend,false,false,"dos, harassment, spam",false 6 | adachi.party,suspend,false,false,"harassment, hate-associated, hate-speech, racism",false 7 | aethy.com,suspend,false,false,"inappropriate, underage",false 8 | annihilation.social,suspend,false,false,"harassment, hate-associated, hate-speech",false 9 | asbestos.cafe,suspend,false,false,"alt-right, anti-lgbtq, hate-associated, hate-speech, racism, underage",false 10 | bae.st,suspend,false,false,"alt-right, anti-lgbtq, hate-associated, hate-speech, inappropriate, nazism, racism",false 11 | banepo.st,suspend,false,false,"antivax, harassment, hate-associated",false 12 | baraag.net,suspend,false,false,"hate-associated, inappropriate, underage",false 13 | beefyboys.win,suspend,false,false,"hate-associated, hate-speech",false 14 | berserker.town,suspend,false,false,"alt-right, anti-lgbtq, fascism, hate-speech",false 15 | bird.makeup,suspend,false,false,"bots, twitter",false 16 | blob.cat,suspend,false,false,"harassment, porn",false 17 | boymoder.biz,suspend,false,false,"harassment, hate-associated, hate-speech, racism, underage",false 18 | breastmilk.club,suspend,false,false,"anti-lgbtq, harassment, hate-associated, hate-speech, racism",false 19 | brighteon.social,suspend,false,false,conspiracy,false 20 | bungle.online,suspend,false,false,"hate-associated, racism",false 21 | cachapa.xyz,suspend,false,false,"hate-speech, racism",false 22 | cannibal.cafe,suspend,false,false,"inappropriate, underage",false 23 | cawfee.club,suspend,false,false,"hate-associated, hate-speech",false 24 | clew.lol,suspend,false,false,"hate-associated, hate-speech, racism",false 25 | clubcyberia.co,suspend,false,false,"harassment, hate-speech, racism",false 26 | collapsitarian.io,suspend,false,false,"alt-right, hate-associated",false 27 | contrapointsfan.club,suspend,false,false,"hate-associated, hate-speech",false 28 | cryptodon.lol,suspend,false,false,crypto,false 29 | cum.camp,suspend,false,false,"harassment, inappropriate",false 30 | cum.salon,suspend,false,false,"hate-speech, porn",false 31 | cunnyborea.space,suspend,false,false,"antisemitism, hate-speech, inappropriate, racism, underage",false 32 | cunnyborea.top,suspend,false,false,"hate-speech, inappropriate, racism, spam, underage",false 33 | cutefunny.net,suspend,false,false,"hate-speech, inappropriate, racism, spam, underage",false 34 | cybercriminal.eu,suspend,false,false,"harassment, hate-associated, spam",false 35 | decayable.ink,suspend,false,false,"alt-right, hate-associated, hate-speech, racism",false 36 | detroitriotcity.com,suspend,false,false,"anti-lgbtq, harassment, hate-speech, racism",false 37 | eientei.org,suspend,false,false,"hate-speech, racism",false 38 | eveningzoo.club,suspend,false,false,"alt-right, antisemitism, conspiracy, fascism, hate-speech, racism",false 39 | federated.fun,suspend,false,false,"anti-lgbtq, hate-speech",false 40 | fightthis.net,suspend,false,false,hate-associated,false 41 | fluf.club,suspend,false,false,"hate-associated, hate-speech",false 42 | freak.university,suspend,false,false,"inappropriate, underage",false 43 | freeatlantis.com,suspend,false,false,"conspiracy, hate-speech, misinformation",false 44 | freesoftwareextremist.com,suspend,false,false,"alt-right, hate-associated, hate-speech",false 45 | freespeechextremist.com,suspend,false,false,hate-speech,false 46 | frennet.xyz,suspend,false,false,"hate-associated, hate-speech",false 47 | fsebugoutzone.org,suspend,false,false,"hate-speech, racism",false 48 | gameliberty.club,suspend,false,false,"bots, hate-speech, racism",false 49 | gearlandia.haus,suspend,false,false,"alt-right, anti-lgbtq, racism",false 50 | genderheretics.xyz,suspend,false,false,"anti-lgbtq, hate-speech",false 51 | geofront.rocks,suspend,false,false,"hate-speech, nazism, racism",false 52 | ghetti.monster,suspend,false,false,"antisemitism, hate-speech, inappropriate, racism, underage",false 53 | gleasonator.com,suspend,false,false,anti-lgbtq,false 54 | glee.li,suspend,false,false,"harassment, hate-speech, racism",false 55 | h5q.net,suspend,false,false,"inappropriate, porn, underage",false 56 | hidamari.apartments,suspend,false,false,"alt-right, nazism",false 57 | husk.site,suspend,false,false,"harassment, hate-speech, racism",false 58 | iddqd.social,suspend,false,false,"harassment, hate-associated, nazism",false 59 | ignorelist.com,suspend,false,false,"dos, spam",false 60 | intkos.link,suspend,false,false,"alt-right, antisemitism, hate-speech",false 61 | kawa-kun.com,suspend,false,false,hate-associated,false 62 | kitsunemimi.club,suspend,false,false,"hate-speech, racism",false 63 | kiwifarms.cc,suspend,false,false,"alt-right, anti-lgbtq, harassment, racism",false 64 | kompost.cz,suspend,false,false,"hate-associated, hate-speech, nazism, racism",false 65 | kurosawa.moe,suspend,false,false,"harassment, hate-associated, hate-speech, racism, underage",false 66 | lain.la,suspend,false,false,hate-associated,false 67 | leafposter.club,suspend,false,false,"hate-associated, hate-speech",false 68 | lewdieheaven.com,suspend,false,false,"inappropriate, underage",false 69 | ligma.pro,suspend,false,false,alt-right,false 70 | loli.church,suspend,false,false,"alt-right, antisemitism, hate-speech, inappropriate, racism, underage",false 71 | lolicon.rocks,suspend,false,false,"hate-speech, underage",false 72 | lolison.network,suspend,false,false,"inappropriate, underage",false 73 | lolison.top,suspend,false,false,"inappropriate, underage",false 74 | lovingexpressions.net,suspend,false,false,"hate-associated, hate-speech, nazism, racism",false 75 | mapsupport.de,suspend,false,false,"harassment, inappropriate, underage",false 76 | mastinator.com,suspend,false,false,"bots, harassment",false 77 | merovingian.club,suspend,false,false,"anti-lgbtq, hate-associated, hate-speech",false 78 | midwaytrades.com,suspend,false,false,"alt-right, anti-lgbtq, hate-associated",false 79 | mirr0r.city,suspend,false,false,"hate-associated, inappropriate, underage",false 80 | misskey-forkbomb.cf,suspend,false,false,"dos, spam",false 81 | mostr.pub,suspend,false,false,"alt-right, hate-speech, spam",false 82 | mouse.services,suspend,false,false,"harassment, hate-associated",false 83 | mugicha.club,suspend,false,false,"hate-speech, racism",false 84 | nationalist.social,suspend,false,false,"alt-right, hate-speech, nazism, racism",false 85 | nicecrew.digital,suspend,false,false,"anti-lgbtq, hate-speech, racism",false 86 | nightshift.social,suspend,false,false,"antivax, conspiracy, harassment, hate-associated, hate-speech, racism",false 87 | nnia.space,suspend,false,false,"alt-right, underage",false 88 | noagendasocial.com,suspend,false,false,"alt-right, hate-speech",false 89 | noauthority.social,suspend,false,false,"alt-right, anti-lgbtq, conspiracy, harassment, hate-speech, racism",false 90 | nobodyhasthe.biz,suspend,false,false,"anti-lgbtq, hate-speech",false 91 | norwoodzero.net,suspend,false,false,"anti-lgbtq, hate-associated, hate-speech, nazism, racism",false 92 | novoa.nagoya,suspend,false,false,"antisemitism, harassment, hate-associated, hate-speech, racism",false 93 | nyanide.com,suspend,false,false,"anti-lgbtq, harassment, hate-speech, nazism, racism",false 94 | obo.sh,suspend,false,false,"alt-right, inappropriate, underage",false 95 | oddballs.online,suspend,false,false,"inappropriate, underage",false 96 | outpoa.st,suspend,false,false,"alt-right, hate-speech, racism",false 97 | paravielfalt.zone,suspend,false,false,"inappropriate, underage",false 98 | parcero.bond,suspend,false,false,"hate-speech, racism",false 99 | parcero.casa,suspend,false,false,"harassment, hate-speech",false 100 | pawoo.net,suspend,false,false,"inappropriate, underage",false 101 | pedo.school,suspend,false,false,underage,false 102 | pibvt.net,suspend,false,false,"inappropriate, underage",false 103 | pieville.net,suspend,false,false,"harassment, hate-speech, nazism",false 104 | pisskey.io,suspend,false,false,"hate-associated, hate-speech",false 105 | pkteerium.xyz,suspend,false,false,"alt-right, conspiracy",false 106 | poa.st,suspend,false,false,"alt-right, hate-speech, nazism, racism",false 107 | pone.social,suspend,false,false,"anti-lgbtq, hate-associated, racism, underage",false 108 | poster.place,suspend,false,false,"alt-right, anti-lgbtq, hate-associated, hate-speech, nazism, racism",false 109 | quanta.wiki,suspend,false,false,"alt-right, anti-lgbtq, hate-associated",false 110 | rape.pet,suspend,false,false,"inappropriate, underage",false 111 | rapemeat.solutions,suspend,false,false,"hate-speech, inappropriate, underage",false 112 | rdrama.cc,suspend,false,false,"anti-lgbtq, harassment, hate-speech, racism",false 113 | refusal.biz,suspend,false,false,"alt-right, hate-speech, inappropriate, underage",false 114 | repl.co,suspend,false,false,"dos, spam",false 115 | republic.red,suspend,false,false,"alt-right, anti-lgbtq, conspiracy, fascism, hate-speech",false 116 | rojogato.com,suspend,false,false,"harassment, hate-speech",false 117 | rot.gives,suspend,false,false,"hate-speech, inappropriate, underage",false 118 | ryona.agency,suspend,false,false,"anti-lgbtq, hate-speech",false 119 | schwartzwelt.xyz,suspend,false,false,"hate-associated, hate-speech",false 120 | scots.network,suspend,false,false,"anti-lgbtq, hate-speech",false 121 | seal.cafe,suspend,false,false,"alt-right, anti-lgbtq, antisemitism, harassment, hate-associated, hate-speech, racism",false 122 | shitpost.cloud,suspend,false,false,"alt-right, harassment, hate-speech, racism",false 123 | shitposter.club,suspend,false,false,"alt-right, harassment",false 124 | shitposter.world,suspend,false,false,"alt-right, harassment",false 125 | shortstacksran.ch,suspend,false,false,"antisemitism, hate-associated, hate-speech, racism",false 126 | shota.house,suspend,false,false,"alt-right, inappropriate, underage",false 127 | shrimpposter.club,suspend,false,false,"harassment, hate-associated, hate-speech",false 128 | skinheads.social,suspend,false,false,"hate-associated, hate-speech, nazism",false 129 | skippers-bin.com,suspend,false,false,"inappropriate, underage",false 130 | sneed.social,suspend,false,false,"anti-lgbtq, antisemitism, fascism, hate-speech, racism",false 131 | spinster.xyz,suspend,false,false,anti-lgbtq,false 132 | springbo.cc,suspend,false,false,"alt-right, anti-lgbtq, harassment, racism",false 133 | stereophonic.space,suspend,false,false,"alt-right, harassment, hate-associated",false 134 | strelizia.net,suspend,false,false,"hate-speech, underage",false 135 | supernets.social,suspend,false,false,"alt-right, hate-speech, racism",false 136 | tastingtraffic.net,suspend,false,false,"anti-lgbtq, spam",false 137 | teci.world,suspend,false,false,"alt-right, hate-associated",false 138 | theblab.org,suspend,false,false,"hate-speech, racism",false 139 | truthsocial.co.in,suspend,false,false,alt-right,false 140 | usualsuspects.lol,suspend,false,false,"anti-lgbtq, harassment, hate-speech",false 141 | varishangout.net,suspend,false,false,"anti-lgbtq, hate-speech, inappropriate, racism",false 142 | whinge.town,suspend,false,false,"anti-lgbtq, hate-associated, racism",false 143 | whitewomen.dog,suspend,false,false,"hate-associated, hate-speech, inappropriate, racism, underage",false 144 | wideboys.org,suspend,false,false,"anti-lgbtq, harassment, hate-associated, racism",false 145 | wolfgirl.bar,suspend,false,false,"antisemitism, harassment, hate-speech, racism",false 146 | yggdrasil.social,suspend,false,false,"anti-lgbtq, hate-speech",false 147 | youjo.love,suspend,false,false,"antisemitism, antivax, inappropriate, underage",false 148 | zztails.gay,suspend,false,false,"alt-right, hate-speech, racism",false 149 | -------------------------------------------------------------------------------- /blocklists/mastodon/mastodon.online.csv: -------------------------------------------------------------------------------- 1 | #domain,#severity,#reject_media,#reject_reports,#public_comment,#obfuscate 2 | 5dollah.click,suspend,false,false,hate speech,false 3 | ac.akirin.xyz,silence,false,false,unmanaged spam,false 4 | activitypub-proxy.cf,suspend,false,false,spam,false 5 | activitypub-troll.cf,suspend,false,false,spam,false 6 | activitypub.awakari.com,silence,false,false,spam,false 7 | aethy.com,suspend,false,false,inappropriate content,false 8 | anime.website,suspend,false,false,inappropriate content,false 9 | annihilation.social,suspend,false,false,hate speech,false 10 | asbestos.cafe,suspend,false,false,hate speech,false 11 | ati**.***ss,suspend,false,false,inappropriate content,false 12 | bae.st,suspend,false,false,inappropriate content,false 13 | bais*****.top,suspend,false,false,inappropriate content,false 14 | baraag.net,suspend,false,false,,false 15 | beefyboys.club,suspend,false,false,hate speech,false 16 | beefyboys.win,suspend,false,false,hate speech,false 17 | beta.birdsite.live,suspend,false,false,,false 18 | beta.mstdn.cf,suspend,false,false,third-party bots,false 19 | bgzashtita.es,silence,false,false,misinformation,false 20 | birb.elfenban.de,suspend,false,false,third-party bots,false 21 | birb.redra1n.net,suspend,false,false,third-party bots,false 22 | birb.stream,suspend,false,false,third-party bots,false 23 | bird.evilcyberhacker.net,suspend,false,false,third-party bots,false 24 | bird.froth.zone,suspend,false,false,third-party bots,false 25 | bird.makeup,suspend,false,false,third-party bots,false 26 | bird.seafoam.space,suspend,false,false,third-party bots,false 27 | birdbots.leptonics.com,suspend,false,false,third-party bots,false 28 | birdlive.grupotd.nat.cu,suspend,false,false,third party bots,false 29 | birdmakeup.sboulema.nl,suspend,false,false,third-party bots,false 30 | birdsite.am-institute.swiss,suspend,false,false,third-party bots,false 31 | birdsite.blazelight.dev,suspend,false,false,third-party bots,false 32 | birdsite.frog.fashion,suspend,false,false,third-party bots,false 33 | birdsite.james.moody.name,suspend,false,false,third-party bots,false 34 | birdsite.lakedrops.com,suspend,false,false,third-party bots,false 35 | birdsite.platypush.tech,suspend,false,false,third-party bots,false 36 | birdsite.seejy.ninja,suspend,false,false,third-party bots,false 37 | birdsite.tcjc.uk,suspend,false,false,third-party bots,false 38 | birdsite.thorlaksson.com,suspend,false,false,third-party bots,false 39 | birdsite.weiranzhang.com,suspend,false,false,third-party bots,false 40 | birdsite.wilde.cloud,suspend,false,false,third-party bots,false 41 | birdsitelive.falschgold.net,suspend,false,false,third-party bots,false 42 | birdsitelive.kevinyank.com,suspend,false,false,third-party bots,false 43 | birdsitelive.samedwards.ca,suspend,false,false,third-party bots,false 44 | birdsitelive.treffler.cloud,suspend,false,false,third-party bots,false 45 | bmu.1a23.studio,suspend,false,false,third-party bots,false 46 | brands.town,suspend,false,false,spam,false 47 | breastmilk.club,suspend,false,false,hate speech,false 48 | bridge.yopp.me,suspend,false,false,third-party bots,false 49 | brighteon.social,silence,false,false,misinformation and conspiracy theories,false 50 | bur****.*oe,suspend,false,false,inappropriate content,false 51 | cachapa.xyz,suspend,false,false,hate speech,false 52 | cann****.*afe,suspend,false,false,inappropriate content,false 53 | cass****.**use,suspend,false,false,inappropriate content,false 54 | catcore.life,silence,false,false,unmanaged spam,false 55 | catgirl.life,suspend,false,false,inappropriate content,false 56 | chil*****.**ace,suspend,false,false,inappropriate content,false 57 | chil*****.*hop,suspend,false,false,inappropriate content,false 58 | chil*****.su,suspend,false,false,inappropriate content,false 59 | chil*****.top,suspend,false,false,inappropriate content,false 60 | chudbuds.lol,suspend,false,false,hate speech,false 61 | clew.lol,suspend,false,false,hate speech,false 62 | clown.******sity,suspend,false,false,inappropriate content,false 63 | clubcyberia.co,suspend,false,false,hate speech,false 64 | comfyboy.club,suspend,false,false,hate speech,false 65 | cotto******.cafe,suspend,false,false,inappropriate content,false 66 | cub.**ol,suspend,false,false,inappropriate content,false 67 | cubs**.*****res,suspend,false,false,inappropriate content,false 68 | cum.salon,suspend,false,false,hate speech,false 69 | cun****.cc,suspend,false,false,inappropriate content,false 70 | cunn******.top,suspend,false,false,inappropriate content,false 71 | cunn*.***uty,suspend,false,false,inappropriate content,false 72 | cunny*****.*pace,suspend,false,false,inappropriate content,false 73 | cut***.**ne,suspend,false,false,inappropriate content,false 74 | cuti*****.cc,suspend,false,false,inappropriate content,false 75 | cuti*****.org,suspend,false,false,inappropriate content,false 76 | daji******.com,suspend,false,false,inappropriate content,false 77 | decayable.ink,suspend,false,false,hate speech,false 78 | deepspace.cafe,suspend,false,false,harassment,false 79 | deepw*********.net,suspend,false,false,inappropriate content,false 80 | degen******.fail,suspend,false,false,,false 81 | detroitriotcity.com,suspend,false,false,hate speech,false 82 | dicekey.jp,silence,false,false,unmanaged spam,false 83 | ede**.***th,suspend,false,false,inappropriate content,false 84 | eepy.****ess,suspend,false,false,inappropriate content,false 85 | eientei.org,suspend,false,false,hate speech,false 86 | eveningzoo.club,suspend,false,false,hate speech,false 87 | fedi.c*********n.org,suspend,false,false,inappropriate content,false 88 | fil**.**ve,suspend,false,false,inappropriate content,false 89 | fr13nd5.com,silence,false,false,misinformation,false 90 | freak.******sity,suspend,false,false,inappropriate content,false 91 | freeatlantis.com,suspend,false,false,hate speech,false 92 | freecumextremist.com,suspend,false,false,hate speech,false 93 | freespeech.club,suspend,false,false,hate speech,false 94 | freespeechextremist.com,suspend,false,false,hate speech,false 95 | fsebugoutzone.org,suspend,false,false,hate speech,false 96 | gab.ai,suspend,false,false,hate speech,false 97 | gab.com,suspend,false,false,hate speech,false 98 | gameliberty.club,suspend,false,false,hate speech,false 99 | gearlandia.haus,suspend,false,false,hate speech,false 100 | genderheretics.xyz,suspend,false,false,transphobia,false 101 | getgle.org,suspend,false,false,hate speech,false 102 | ghet**.****ter,suspend,false,false,inappropriate content,false 103 | gimm*****.cc,suspend,false,false,inappropriate content,false 104 | glindr.org,suspend,false,false,transphobia,false 105 | globalfrens.com,suspend,false,false,hate speech,false 106 | glowers.club,suspend,false,false,hate speech,false 107 | gtmastodon.online,suspend,false,false,spam,false 108 | h5q.net,suspend,false,false,inappropriate content,false 109 | head***.*afe,suspend,false,false,inappropriate content,false 110 | hen***.**by,suspend,false,false,inappropriate content,false 111 | hunk.city,suspend,false,false,spam,false 112 | husk.site,suspend,false,false,hate speech,false 113 | imo***.**cs,suspend,false,false,inappropriate content,false 114 | imou**.****sed,suspend,false,false,inappropriate content,false 115 | instinctd.com,suspend,false,false,third-party bots,false 116 | inum***.*ove,suspend,false,false,inappropriate content,false 117 | jaeger.website,suspend,false,false,transphobia,false 118 | kids******.fyi,suspend,false,false,inappropriate content,false 119 | kids.0px.io,silence,false,false,unmanaged spam,false 120 | kiwifarms.cc,suspend,false,false,known for harassment,false 121 | kodo.*****res,suspend,false,false,inappropriate content,false 122 | kog**.cc,suspend,false,false,inappropriate content,false 123 | leafposter.club,suspend,false,false,hate speech,false 124 | leonardwong.dev,suspend,false,false,third-party bots,false 125 | lewdi*******.com,suspend,false,false,inappropriate content,false 126 | lewdi*******.vip,suspend,false,false,inappropriate content,false 127 | lick.*****.win,suspend,false,false,inappropriate content,false 128 | lit.t*******.xyz,suspend,false,false,inappropriate content,false 129 | lol*.****ch,suspend,false,false,inappropriate content,false 130 | lol*.***za,suspend,false,false,inappropriate content,false 131 | loli****.***ool,suspend,false,false,inappropriate content,false 132 | loli***.****ork,suspend,false,false,inappropriate content,false 133 | loli***.**cks,suspend,false,false,inappropriate content,false 134 | loli.****sed,suspend,false,false,inappropriate content,false 135 | lolison.top,suspend,false,false,inappropriate content,false 136 | lush.moe,suspend,false,false,inappropriate content,false 137 | m.n1l.dev,silence,false,false,unmanaged spam,false 138 | maps******.de,suspend,false,false,inappropriate content,false 139 | mashtodon.alterracloud.com,suspend,false,false,hate speech,false 140 | mast-serv.site,suspend,false,false,spam,false 141 | mast.socialspill.com,suspend,false,false,third-party bots,false 142 | mastinator.com,suspend,false,false,third-party bots,false 143 | masto***.******.lol,suspend,false,false,inappropriate content,false 144 | mastodon.sitejp.synology.me,silence,false,false,unmanaged spam,false 145 | mastodon.social.fraudulent.link,suspend,false,false,impersonation,false 146 | mastodon.socialspill.com,suspend,false,false,third-party bots,false 147 | mastodonhub.com,suspend,false,false,mirroring other mastodon accounts without permission,false 148 | merovingian.club,suspend,false,false,hate speech,false 149 | min**.**fe,suspend,false,false,inappropriate content,false 150 | minds.com,silence,false,false,hate speech,false 151 | misskey-forkbomb.cf,suspend,false,false,spam,false 152 | misskey.io,silence,false,false,inappropriate content,false 153 | misskey.shunrin.com,silence,false,false,unmanaged spam,false 154 | momostr.pink,silence,false,false,spam,false 155 | monk.**.****ness,suspend,false,false,inappropriate content,false 156 | mostr.pub,silence,false,false,spam,false 157 | mstdn.foxfam.club,silence,false,false,server dedicated to unofficial news bots,false 158 | mugicha.club,suspend,false,false,transphobia,false 159 | my.dirtyhobby.xyz,suspend,false,false,automated porn spam ,false 160 | nate*******.org,suspend,false,false,hate speech,false 161 | nateh******.**line,suspend,false,false,hate speech,false 162 | nationalist.social,suspend,false,false,hate speech,false 163 | nazi.social,suspend,false,false,hate speech,false 164 | neckbeard.xyz,suspend,false,false,hate speech,false 165 | nee****.*op,suspend,false,false,inappropriate content,false 166 | newsbots.eu,suspend,false,false,bots,false 167 | nicecrew.digital,suspend,false,false,hate speech,false 168 | nnia.space,suspend,false,false,-,false 169 | noagendasocial.com,silence,false,false, misinformation and conspiracy theories ,false 170 | noauthority.social,suspend,false,false,hate speech,false 171 | norwoodzero.net,suspend,false,false,hate speech,false 172 | ns.auction,suspend,false,false,hate speech,false 173 | nya.u*******.moe,suspend,false,false,inappropriate content,false 174 | nyanide.com,suspend,false,false,hate speech,false 175 | ob*.*h,suspend,false,false,inappropriate content,false 176 | oddb****.***ine,suspend,false,false,inappropriate content,false 177 | onion.social,silence,false,false,spam,false 178 | orfodon.org,suspend,false,false,third-party bots,false 179 | out****.*ip,suspend,false,false,inappropriate content,false 180 | pac**.us,suspend,false,false,inappropriate content,false 181 | paravielfalt.zone,suspend,false,false,inappropriate content,false 182 | parcero.bond,suspend,false,false,hate speech,false 183 | parcero.casa,suspend,false,false,hate speech,false 184 | pawoo.net,suspend,false,false,inappropriate content,false 185 | paypig.org,suspend,false,false,hate speech,false 186 | ped*.****ol,suspend,false,false,inappropriate content,false 187 | pett****.art,suspend,false,false,inappropriate content,false 188 | pieville.net,suspend,false,false,hate speech,false 189 | pika.moe,silence,false,false,unmanaged spam,false 190 | pl.smuglo.li,suspend,false,false,inappropriate content,false 191 | pl.wy********.art,suspend,false,false,inappropriate content,false 192 | plero**.*****.love,suspend,false,false,inappropriate content,false 193 | plero**.*****.net,suspend,false,false,inappropriate content,false 194 | pleroma.**********he.biz,suspend,false,false,hate speech,false 195 | pleroma.adachi.party,suspend,false,false,hate speech,false 196 | pleroma.fun,suspend,false,false,hate speech,false 197 | pleroma.kitsunemimi.club,suspend,false,false,hate speech,false 198 | pleroma.us,suspend,false,false,hate speech,false 199 | poa.st,suspend,false,false,hate speech,false 200 | poast.tv,suspend,false,false,hate speech,false 201 | pooper.social,suspend,false,false,hate speech,false 202 | poster.place,suspend,false,false,hate speech,false 203 | postin*.*******.rocks,suspend,false,false,hate speech,false 204 | pouque.net,suspend,false,false,hate speech,false 205 | pupp******.cc,suspend,false,false,inappropriate content,false 206 | pupp******.org,suspend,false,false,inappropriate content,false 207 | rakket.app,suspend,false,false,hate speech,false 208 | rap*.*et,suspend,false,false,inappropriate content,false 209 | rapem***.*****ions,suspend,false,false,inappropriate content,false 210 | rapemeat.express,suspend,false,false,inappropriate content,false 211 | rdrama.cc,suspend,false,false,hate speech,false 212 | refusal.biz,suspend,false,false,inappropriate content,false 213 | repl.co,suspend,false,false,spam,false 214 | rot.***es,suspend,false,false,inappropriate content,false 215 | ryona.agency,suspend,false,false,hate speech,false 216 | schwartzwelt.xyz,suspend,false,false,hate speech,false 217 | seal.cafe,suspend,false,false,hate speech,false 218 | sexy****.xyz,suspend,false,false,inappropriate content,false 219 | shitpisscum.mooo.com,suspend,false,false,hate speech,false 220 | shitpost.cloud,suspend,false,false,hate speech,false 221 | shitposte.rs,suspend,false,false,hate speech,false 222 | shitposter.club,suspend,false,false,hate speech,false 223 | shitposter.world,silence,false,false,harassment,false 224 | shitposting.army,suspend,false,false,hate speech,false 225 | sho**.***se,suspend,false,false,inappropriate content,false 226 | shortstackran.ch,suspend,false,false,hate speech,false 227 | shortstacksran.ch,suspend,false,false,hate speech,false 228 | shot*****.xyz,suspend,false,false,inappropriate content,false 229 | shrimpcam.pw,suspend,false,false,third-party bots,false 230 | shrimpposter.club,suspend,false,false,hate speech,false 231 | sinblr.com,suspend,false,false,automated porn spam,false 232 | skinheads.social,suspend,false,false,hate speech,false 233 | skipp*******.com,suspend,false,false,inappropriate content,false 234 | sleepy.cafe,suspend,false,false,hate speech,false 235 | sneed.social,suspend,false,false,hate speech,false 236 | social.********y.net,suspend,false,false,inappropriate content,false 237 | social.freysa.ai,suspend,false,false,spam,false 238 | social.lovingexpressions.net,suspend,false,false,hate speech,false 239 | social.onlinesession.app,silence,false,false,unmanaged spam,false 240 | social.quodverum.com,silence,false,false,misinformation and conspiracy theories,false 241 | solagg.com,suspend,false,false,spam,false 242 | sovran.social,suspend,false,false,third-party bots,false 243 | spinster.xyz,suspend,false,false,transphobia,false 244 | strelizia.net,suspend,false,false,hate speech,false 245 | supernets.social,suspend,false,false,hate speech,false 246 | switter.at,suspend,false,false,preparing for announced shutdown,false 247 | t.l3r.me,suspend,false,false,third-party bots,false 248 | tastingtraffic.net,suspend,false,false,spam,false 249 | the.usualsuspects.lol,suspend,false,false,hate speech,false 250 | theblab.org,suspend,false,false,hate speech,false 251 | tickler.cc,silence,false,false,unmanaged spam,false 252 | too****.*tf,suspend,false,false,inappropriate content,false 253 | too****.*un,suspend,false,false,inappropriate content,false 254 | toot.love,silence,false,false,harassment,false 255 | trab****.com,suspend,false,false,hate speech,false 256 | truthsocialpro.org,suspend,false,false,,false 257 | tum**.**wn,suspend,false,false,inappropriate content,false 258 | tweet.pasture.moe,suspend,false,false,third-party bots,false 259 | tweetbridge.kogasa.de,suspend,false,false,third-party bots,false 260 | tweets.icu,suspend,false,false,third-party bots,false 261 | twitiverse.com,suspend,false,false,third-party bots,false 262 | twitter-bridge.cryobyte.net,suspend,false,false,third-party bots,false 263 | twitter.1d4.us,suspend,false,false,third-party bots,false 264 | twitter.activitypub.actor,suspend,false,false,third-party bots,false 265 | twitter.cryobyte.net,suspend,false,false,third-party bots,false 266 | twitter.doesnotexist.club,suspend,false,false,third-party bots,false 267 | twitter.grants.cafe,suspend,false,false,third-party bots,false 268 | twitter.piriklub.eu,suspend,false,false,third-party bots,false 269 | twitterbridge.jannis.rocks,suspend,false,false,third-party bots,false 270 | twtr.carnivore.social,suspend,false,false,third-party bots,false 271 | twtr.ingeechat.party,suspend,false,false,third-party bots,false 272 | twtr.plus,suspend,false,false,,false 273 | twtr.vrij.social,suspend,false,false,third-party bots,false 274 | twtr.wappie.land,suspend,false,false,third-party bots,false 275 | twtrbridge.de,suspend,false,false,third-party bots,false 276 | twttr.yukineko.me,suspend,false,false,third-party bots,false 277 | urchan.org,suspend,false,false,hate speech,false 278 | urweibo.com,silence,false,false,unmanaged spam,false 279 | usasa.ky,silence,false,false,unmanaged spam,false 280 | varis*******.net,suspend,false,false,inappropriate content,false 281 | webmasto.online,suspend,false,false,spam,false 282 | whit******.dog,suspend,false,false,inappropriate content,false 283 | wolfgirl.bar,suspend,false,false,hate speech,false 284 | workers.dev,suspend,false,false,botnet,false 285 | x.good.news,suspend,false,false,third-party bots,false 286 | xxxtumblr.org,silence,false,false,pornographic content not marked as sensitive,false 287 | yes***.*et,suspend,false,false,inappropriate content,false 288 | yggdrasil.social,suspend,false,false,hate speech,false 289 | yot**.***ks,suspend,false,false,inappropriate content,false 290 | yot**.*ol,suspend,false,false,inappropriate content,false 291 | you**.**ve,suspend,false,false,inappropriate content,false 292 | youj*.*****ver,suspend,false,false,inappropriate content,false 293 | yum***.cc,suspend,false,false,inappropriate content,false 294 | zet***.**ub,suspend,false,false,inappropriate content ,false 295 | zztails.gay,suspend,false,false,hate speech,false 296 | -------------------------------------------------------------------------------- /blocklists/mastodon/mastodon.social.csv: -------------------------------------------------------------------------------- 1 | #domain,#severity,#reject_media,#reject_reports,#public_comment,#obfuscate 2 | 10minutepleroma.com,suspend,false,false,spam,false 3 | 5dollah.click,suspend,false,false,hate speech,false 4 | a.sc,suspend,false,false,hate speech,false 5 | ac.akirin.xyz,silence,false,false,unmanaged spam,false 6 | activitypub-proxy.cf,suspend,false,false,spam,false 7 | activitypub-troll.cf,suspend,false,false,spam,false 8 | activitypub.awakari.com,silence,false,false,spam,false 9 | aethy.com,suspend,false,false,inappropriate content,false 10 | annihilation.social,suspend,false,false,hate speech,false 11 | ap.***.st,suspend,false,false,spam,false 12 | asbestos.cafe,suspend,false,false,hate speech,false 13 | ati**.***ss,suspend,false,false,inappropriate content,false 14 | bae.st,suspend,false,false,inappropriate content,false 15 | bais*****.top,suspend,false,false,inappropriate content,false 16 | bar***.*et,suspend,false,false,inappropriate content,false 17 | beef*****.*lub,suspend,false,false,inappropriate content,false 18 | beefyboys.win,suspend,false,false,hate speech,false 19 | best****.fun,suspend,false,false,inappropriate content,false 20 | beta.birdsite.live,suspend,false,false,third-party bots,false 21 | beta.mstdn.cf,suspend,false,false,third-party bots,false 22 | bgzashtita.es,silence,false,false,misinformation,false 23 | birb.elfenban.de,suspend,false,false,third-party bots,false 24 | birb.redra1n.net,suspend,false,false,third-party bots,false 25 | birb.stream,suspend,false,false,third-party bots,false 26 | bird.evilcyberhacker.net,suspend,false,false,third-party bots,false 27 | bird.froth.zone,suspend,false,false,third-party bots,false 28 | bird.im-in.space,suspend,false,false,third-party bots,false 29 | bird.istheguy.com,suspend,false,false,third-party bots,false 30 | bird.makeup,suspend,false,false,third-party bots,false 31 | bird.r669.live,suspend,false,false,third-party bots,false 32 | bird.seafoam.space,suspend,false,false,third-party bots,false 33 | birdbots.leptonics.com,suspend,false,false,third-party bots,false 34 | birdbridge.autonomy.earth,suspend,false,false,third-party bots,false 35 | birdlive.grupotd.nat.cu,suspend,false,false,third party bots,false 36 | birdmakeup.opiumpost.org,suspend,false,false,third-party bots,false 37 | birdmakeup.sboulema.nl,suspend,false,false,third-party bots,false 38 | birdsite.am-institute.swiss,suspend,false,false,third-party bots,false 39 | birdsite.b93.dece.space,suspend,false,false,third-party bots,false 40 | birdsite.blazelight.dev,suspend,false,false,third-party bots,false 41 | birdsite.cloutier.co,suspend,false,false,third-party bots,false 42 | birdsite.darkesttimeline.social,suspend,false,false,third-party bots,false 43 | birdsite.frog.fashion,suspend,false,false,third-party bots,false 44 | birdsite.gabeappleton.me,suspend,false,false,third-party bots,false 45 | birdsite.gred.al,suspend,false,false,third-party bots,false 46 | birdsite.james.moody.name,suspend,false,false,third-party bots,false 47 | birdsite.jemverse.xyz,suspend,false,false,third-party bots,false 48 | birdsite.kaijauch.de,suspend,false,false,third-party bots,false 49 | birdsite.lakedrops.com,suspend,false,false,third-party bots,false 50 | birdsite.link,suspend,false,false,third-party bots,false 51 | birdsite.mastodon.me.uk,suspend,false,false,third-party bots,false 52 | birdsite.miisu.net,suspend,false,false,third-party bots,false 53 | birdsite.monster,suspend,false,false,third-party bots,false 54 | birdsite.nytpu.com,suspend,false,false,third-party bots,false 55 | birdsite.oliviaappleton.com,suspend,false,false,third-party bots,false 56 | birdsite.platypush.tech,suspend,false,false,third-party bots,false 57 | birdsite.seejy.ninja,suspend,false,false,third-party bots,false 58 | birdsite.skye.cx,suspend,false,false,third-party bots,false 59 | birdsite.slashdev.space,suspend,false,false,third-party bots,false 60 | birdsite.spectreos.de,suspend,false,false,third-party bots,false 61 | birdsite.tcjc.uk,suspend,false,false,third-party bots,false 62 | birdsite.thorlaksson.com,suspend,false,false,third-party bots,false 63 | birdsite.toot.si,suspend,false,false,third-party bots,false 64 | birdsite.vrparty.social,suspend,false,false,third-party bots,false 65 | birdsite.weiranzhang.com,suspend,false,false,third-party bots,false 66 | birdsite.wilde.cloud,suspend,false,false,third-party bots,false 67 | birdsitelive.baguette-it.social,suspend,false,false,third-party bots,false 68 | birdsitelive.bubbletea.dev,suspend,false,false,third-party bots,false 69 | birdsitelive.falschgold.net,suspend,false,false,third-party bots,false 70 | birdsitelive.kevinyank.com,suspend,false,false,third-party bots,false 71 | birdsitelive.loca.lt,suspend,false,false,third-party bots,false 72 | birdsitelive.moistgarbage.info,suspend,false,false,third-party bots,false 73 | birdsitelive.samedwards.ca,suspend,false,false,third-party bots,false 74 | birdsitelive.treffler.cloud,suspend,false,false,third-party bots,false 75 | bmu.1a23.studio,suspend,false,false,third-party bots,false 76 | brands.town,suspend,false,false,spam,false 77 | breastmilk.club,suspend,false,false,hate speech,false 78 | bridge.birb.space,suspend,false,false,third-party bots,false 79 | bridge.yopp.me,suspend,false,false,third-party bots,false 80 | brighteon.social,silence,false,false,conspiracy theories,false 81 | bsd.moe,silence,false,false,harassment,false 82 | bur****.*oe,suspend,false,false,inappropriate content,false 83 | cachapa.xyz,suspend,false,false,hate speech,false 84 | cann****.*afe,suspend,false,false,inappropriate content,false 85 | cass****.**use,suspend,false,false,inappropriate content,false 86 | catcore.life,silence,false,false,unmanaged spam,false 87 | catgirl.life,suspend,false,false,harassment,false 88 | cawfee.club,suspend,false,false,hate speech,false 89 | chaurocks.com,suspend,false,false,spam,false 90 | chil*****.**ace,suspend,false,false,inappropriate content,false 91 | chil*****.*hop,suspend,false,false,inappropriate content,false 92 | chil*****.su,suspend,false,false,inappropriate content,false 93 | chil*****.top,suspend,false,false,inappropriate content,false 94 | chud****.lol,suspend,false,false,hate speech,false 95 | clew.lol,suspend,false,false,hate speech,false 96 | clown.******sity,suspend,false,false,inappropriate content,false 97 | clubcyberia.co,suspend,false,false,hate speech,false 98 | cnet.site,suspend,false,false,harassment,false 99 | comfyboy.club,suspend,false,false,hate speech,false 100 | coom.club,suspend,false,false,harassment,false 101 | cotto******.cafe,suspend,false,false,inappropriate content,false 102 | cub.**ol,suspend,false,false,inappropriate content,false 103 | cubs**.*****res,suspend,false,false,inappropriate content,false 104 | cum.**mp,suspend,false,false,inappropriate content,false 105 | cum.desupost.soy,suspend,false,false,hate speech,false 106 | cum.salon,suspend,false,false,hate speech,false 107 | cun****.cc,suspend,false,false,inappropriate content,false 108 | cunn******.top,suspend,false,false,inappropriate content,false 109 | cunn*.****nce,suspend,false,false,inappropriate content,false 110 | cunn*.***uty,suspend,false,false,inappropriate content,false 111 | cunny*****.*pace,suspend,false,false,inappropriate content,false 112 | cut***.**ne,suspend,false,false,inappropriate content,false 113 | cutec*******.cafe,suspend,false,false,inappropriate content,false 114 | cuti*****.cc,suspend,false,false,inappropriate content,false 115 | cuti*****.org,suspend,false,false,inappropriate content,false 116 | cyberstorm.one,suspend,false,false,hate speech,false 117 | daffodil-11.org,suspend,false,false,spam,false 118 | daji******.com,suspend,false,false,inappropriate content,false 119 | decayable.ink,suspend,false,false,hate speech,false 120 | deepspace.cafe,suspend,false,false,harassment,false 121 | deepw*********.net,suspend,false,false,inappropriate content,false 122 | degen******.fail,suspend,false,false,hate speech,false 123 | detroitriotcity.com,suspend,false,false,hate speech,false 124 | dicekey.jp,silence,false,false,unmanaged spam,false 125 | dogs*****.net,suspend,false,false,hate speech,false 126 | ede**.***th,suspend,false,false,inappropriate content,false 127 | eepy.****ess,suspend,false,false,inappropriate content,false 128 | eientei.org,suspend,false,false,hate speech,false 129 | eveningzoo.club,suspend,false,false,hate speech,false 130 | fedi.app,suspend,false,false,harassment,false 131 | fedi.c*********n.org,suspend,false,false,inappropriate content,false 132 | feminism.lgbt,suspend,false,false,harassment,false 133 | fil**.**ve,suspend,false,false,inappropriate content,false 134 | firebird.mullet.social,suspend,false,false,third-party bots,false 135 | fr13nd5.com,silence,false,false,misinformation,false 136 | freak.******sity,suspend,false,false,inappropriate content,false 137 | freeatlantis.com,suspend,false,false,hate speech,false 138 | freecumextremist.com,suspend,false,false,hate speech,false 139 | freesoftwareextremist.com,suspend,false,false,hate speech,false 140 | freespeech.club,suspend,false,false,hate speech,false 141 | freespeechextremist.com,suspend,false,false,hate speech,false 142 | freezepeach.xyz,silence,false,false,harassment,false 143 | frennet.xyz,suspend,false,false,hate speech,false 144 | fsebugoutzone.org,suspend,false,false,hate speech,false 145 | gab.ai,suspend,false,false,harassment,false 146 | gab.com,suspend,false,false,harassment,false 147 | gameliberty.club,suspend,false,false,bot that announces blocks,false 148 | genderheretics.xyz,suspend,false,false,transphobia,false 149 | getgle.org,suspend,false,false,hate speech,false 150 | geti****.com,suspend,false,false,inappropriate content,false 151 | ghet**.****ter,suspend,false,false,inappropriate content,false 152 | gimm*****.cc,suspend,false,false,inappropriate content,false 153 | gitmo.life,suspend,false,false,hate speech,false 154 | gleasonator.com,suspend,false,false,transphobia,false 155 | glindr.org,suspend,false,false,transphobia,false 156 | glowers.club,suspend,false,false,hate speech,false 157 | gor****.*om,suspend,false,false,hate speech,false 158 | goy**.*pp,suspend,false,false,hate speech,false 159 | gtmastodon.online,suspend,false,false,spam,false 160 | h5q.net,suspend,false,false,inappropriate content,false 161 | head***.*afe,suspend,false,false,inappropriate content,false 162 | hen***.**by,suspend,false,false,inappropriate content,false 163 | honkwerx.tech,suspend,false,false,hate speech,false 164 | hunk.city,suspend,false,false,spam,false 165 | iddqd.social,suspend,false,false,harassment,false 166 | imo***.**cs,suspend,false,false,inappropriate content,false 167 | imou**.****sed,suspend,false,false,inappropriate content,false 168 | instinctd.com,suspend,false,false,third-party bots,false 169 | intkos.link,suspend,false,false,hate speech,false 170 | inum***.*ove,suspend,false,false,inappropriate content,false 171 | jaeger.website,suspend,false,false,harassment,false 172 | kids******.fyi,suspend,false,false,inappropriate content,false 173 | kids.0px.io,silence,false,false,unmanaged spam,false 174 | kiss*****.moe,suspend,false,false,inappropriate content,false 175 | kiwifarms.cc,suspend,false,false,harassment,false 176 | kiwifarms.is,suspend,false,false,harassment,false 177 | kiwifarms.net,suspend,false,false,harassment,false 178 | kodo.*****res,suspend,false,false,inappropriate content,false 179 | kog**.cc,suspend,false,false,inappropriate content,false 180 | krdtube.org,silence,false,false,misinformation,false 181 | kurosawa.moe,suspend,false,false,hate speech,false 182 | lanue*********a.es,suspend,false,false,hate speech,false 183 | leafposter.club,suspend,false,false,hate speech,false 184 | leonardwong.dev,suspend,false,false,third-party bots,false 185 | lewdi*******.com,suspend,false,false,inappropriate content,false 186 | lewdi*******.vip,suspend,false,false,inappropriate content,false 187 | lick.*****.win,suspend,false,false,inappropriate content,false 188 | lit.t*******.xyz,suspend,false,false,inappropriate content,false 189 | localtunnel.me,suspend,false,false,spam,false 190 | lol****.*op,suspend,false,false,inappropriate content,false 191 | lol*.****ch,suspend,false,false,inappropriate content,false 192 | lol*.***za,suspend,false,false,inappropriate content,false 193 | loli****.***ool,suspend,false,false,inappropriate content,false 194 | loli***.****ork,suspend,false,false,inappropriate content,false 195 | loli***.**cks,suspend,false,false,maps,false 196 | loli.****sed,suspend,false,false,inappropriate content,false 197 | lus*.*oe,suspend,false,false,inappropriate content ,false 198 | m.n1l.dev,silence,false,false,unmanaged spam,false 199 | maps******.de,suspend,false,false,inappropriate content,false 200 | mashtodon.alterracloud.com,suspend,false,false,hate speech,false 201 | mast-serv.site,suspend,false,false,spam,false 202 | mast.socialspill.com,suspend,false,false,third-party bots,false 203 | mastinator.com,suspend,false,false,third-party bots,false 204 | masto***.******.lol,suspend,false,false,inappropriate content,false 205 | mastodon.sitejp.synology.me,silence,false,false,unmanaged spam,false 206 | mastodon.social.fraudulent.link,suspend,false,false,impersonation,false 207 | mastodon.socialspill.com,suspend,false,false,third-party bots,false 208 | mastodonhub.com,suspend,false,false,mirroring other mastodon accounts without permission,false 209 | mela******.tk,suspend,false,false,inappropriate content,false 210 | merovingian.club,suspend,false,false,hate speech,false 211 | min**.**fe,suspend,false,false,inappropriate content,false 212 | minds.com,silence,false,false,hate speech,false 213 | mir***.**ty,suspend,false,false,inappropriate content,false 214 | misskey-forkbomb.cf,suspend,false,false,spam,false 215 | misskey.io,silence,false,false,inappropriate content,false 216 | misskey.shunrin.com,silence,false,false,unmanaged spam,false 217 | momostr.pink,suspend,false,false,spam,false 218 | monk.**.****ness,suspend,false,false,inappropriate content,false 219 | monstergirl.space,suspend,false,false,hate speech,false 220 | mostr.pub,suspend,false,false,spam,false 221 | mouse.services,suspend,false,false,harassment,false 222 | mstdn.foxfam.club,silence,false,false,third-party bots,false 223 | mugicha.club,suspend,false,false,hate speech,false 224 | nate*******.org,suspend,false,false,hate speech,false 225 | nateh******.**line,suspend,false,false,hate speech,false 226 | nationalist.social,suspend,false,false,hate speech,false 227 | nazi.social,suspend,false,false,hate speech,false 228 | neck*****.xyz,suspend,false,false,inappropriate content,false 229 | nee****.*op,suspend,false,false,inappropriate content,false 230 | ngrok.io,suspend,false,false,spam,false 231 | nicecrew.digital,suspend,false,false,hate speech,false 232 | nni*.***ce,suspend,false,false,maps,false 233 | noagendasocial.com,silence,false,false,harassment,false 234 | noauthority.social,suspend,false,false,hate speech,false 235 | norwoodzero.net,suspend,false,false,hate speech,false 236 | ns.auction,suspend,false,false,hate speech,false 237 | nya.u*******.moe,suspend,false,false,inappropriate content,false 238 | nyanide.com,suspend,false,false,hate speech,false 239 | ob*.*h,suspend,false,false,inappropriate content,false 240 | oddb****.***ine,suspend,false,false,inappropriate content,false 241 | onion.social,silence,false,false,spam,false 242 | orfodon.org,suspend,false,false,third-party bots,false 243 | out****.*ip,suspend,false,false,inappropriate content,false 244 | outpoa.st,suspend,false,false,hate speech,false 245 | pac**.us,suspend,false,false,inappropriate content,false 246 | paravielfalt.zone,suspend,false,false,inappropriate content,false 247 | parcero.bond,suspend,false,false,hate speech,false 248 | parcero.casa,suspend,false,false,hate speech,false 249 | pawoo.net,suspend,false,false,inappropriate content,false 250 | paypig.org,suspend,false,false,hate speech,false 251 | ped*.****ol,suspend,false,false,maps,false 252 | pett****.art,suspend,false,false,inappropriate content,false 253 | pieville.net,suspend,false,false,harassment,false 254 | pika.moe,silence,false,false,unmanaged spam,false 255 | pisskey.io,suspend,false,false,hate speech,false 256 | pl.s*****.li,suspend,false,false,inappropriate content,false 257 | pl.wy********.art,suspend,false,false,inappropriate content,false 258 | plero**.*****.love,suspend,false,false,inappropriate content,false 259 | plero**.*****.net,suspend,false,false,inappropriate content,false 260 | pleroma.**********he.biz,suspend,false,false,hate speech,false 261 | pleroma.adachi.party,suspend,false,false,hate speech,false 262 | pleroma.fun,suspend,false,false,hate speech,false 263 | pleroma.kitsunemimi.club,suspend,false,false,hate speech,false 264 | pleroma.us,suspend,false,false,hate speech,false 265 | poa.st,suspend,false,false,hate speech,false 266 | poast.tv,suspend,false,false,hate speech,false 267 | pooper.social,suspend,false,false,hate speech,false 268 | poster.place,suspend,false,false,hate speech,false 269 | postin*.*******.rocks,suspend,false,false,hate speech,false 270 | pouque.net,suspend,false,false,hate speech,false 271 | prete*******.biz,suspend,false,false,inappropriate content,false 272 | pupp******.cc,suspend,false,false,inappropriate content,false 273 | pupp******.org,suspend,false,false,inappropriate content,false 274 | rakket.app,suspend,false,false,hate speech,false 275 | rap*.*et,suspend,false,false,inappropriate content,false 276 | rapem***.*****ions,suspend,false,false,inappropriate content,false 277 | rapemeat.express,suspend,false,false,inappropriate content,false 278 | raplst.town,suspend,false,false,harassment,false 279 | rdrama.cc,suspend,false,false,hate speech,false 280 | refusal.biz,suspend,false,false,inappropriate content,false 281 | repl.co,suspend,false,false,spam,false 282 | rot.***es,suspend,false,false,inappropriate content,false 283 | ryona.agency,suspend,false,false,hate speech,false 284 | schwartzwelt.xyz,suspend,false,false,hate speech,false 285 | seal.cafe,suspend,false,false,hate speech,false 286 | sexy****.xyz,suspend,false,false,inappropriate content,false 287 | shitpisscum.mooo.com,suspend,false,false,hate speech,false 288 | shitpost.cloud,suspend,false,false,hate speech,false 289 | shitposte.rs,suspend,false,false,hate speech,false 290 | shitposter.club,silence,false,false,harassment,false 291 | shitposter.world,silence,false,false,harassment,false 292 | shitposting.army,suspend,false,false,hate speech,false 293 | sho**.***se,suspend,false,false,inappropriate content,false 294 | shortstackran.ch,suspend,false,false,hate speech,false 295 | shortstacksran.ch,suspend,false,false,hate speech,false 296 | shot*****.xyz,suspend,false,false,inappropriate content,false 297 | shrimpcam.pw,suspend,false,false,third-party bots,false 298 | shrimpposter.club,suspend,false,false,hate speech,false 299 | sinblr.com,silence,false,false,spam,false 300 | skinheads.social,suspend,false,false,hate speech,false 301 | skipp*******.com,suspend,false,false,inappropriate content,false 302 | sleepy.cafe,suspend,false,false,hate speech,false 303 | sneed.social,suspend,false,false,hate speech,false 304 | social.********y.net,suspend,false,false,inappropriate content,false 305 | social.freysa.ai,suspend,false,false,spam,false 306 | social.lovingexpressions.net,suspend,false,false,hate speech,false 307 | social.onlinesession.app,silence,false,false,unmanaged spam,false 308 | social.quodverum.com,silence,false,false,misinformation and conspiracy theories,false 309 | solagg.com,suspend,false,false,spam,false 310 | sovran.social,suspend,false,false,third-party bots,false 311 | spinster.xyz,suspend,false,false,transphobia,false 312 | strelizia.net,suspend,false,false,hate speech,false 313 | supernets.social,suspend,false,false,hate speech,false 314 | switter.at,suspend,false,false,preparing for announced shutdown,false 315 | t.l3r.me,suspend,false,false,third-party bots,false 316 | tastingtraffic.net,suspend,false,false,spam,false 317 | the.usualsuspects.lol,suspend,false,false,hate speech,false 318 | theblab.org,suspend,false,false,hate speech,false 319 | tickler.cc,silence,false,false,unmanaged spam,false 320 | too****.*tf,suspend,false,false,inappropriate content,false 321 | too****.*un,suspend,false,false,inappropriate content,false 322 | toot.love,silence,false,false,harassment,false 323 | trab****.com,suspend,false,false,hate speech,false 324 | truthsocialpro.org,suspend,false,false,,false 325 | tum**.**wn,suspend,false,false,inappropriate content,false 326 | tweet.pasture.moe,suspend,false,false,third-party bots,false 327 | tweetbridge.kogasa.de,suspend,false,false,third-party bots,false 328 | tweets.icu,suspend,false,false,third-party bots,false 329 | twitiverse.com,suspend,false,false,third-party bots,false 330 | twitter-bridge.cryobyte.net,suspend,false,false,third-party bots,false 331 | twitter.1d4.us,suspend,false,false,third-party bots,false 332 | twitter.activitypub.actor,suspend,false,false,third-party bots,false 333 | twitter.cryobyte.net,suspend,false,false,third-party bots,false 334 | twitter.doesnotexist.club,suspend,false,false,third-party bots,false 335 | twitter.grants.cafe,suspend,false,false,third-party bots,false 336 | twitter.piriklub.eu,suspend,false,false,third-party bots,false 337 | twitterbridge.jannis.rocks,suspend,false,false,third-party bots,false 338 | twtr.carnivore.social,suspend,false,false,third-party bots,false 339 | twtr.ingeechat.party,suspend,false,false,third-party bots,false 340 | twtr.plus,suspend,false,false,third-party bots,false 341 | twtr.vrij.social,suspend,false,false,third-party bots,false 342 | twtr.wappie.land,suspend,false,false,third-party bots,false 343 | twtrbridge.de,suspend,false,false,third-party bots,false 344 | twttr.yukineko.me,suspend,false,false,third-party bots,false 345 | unfufadoo.net,silence,false,false,spam,false 346 | urchan.org,suspend,false,false,hate speech,false 347 | urweibo.com,silence,false,false,unmanaged spam,false 348 | usasa.ky,silence,false,false,unmanaged spam,false 349 | varis*******.net,suspend,false,false,inappropriate content,false 350 | wagesofsinisdeath.com,suspend,false,false,harassment,false 351 | waifu.social,suspend,false,false,harassment,false 352 | waifuappreciation.club,suspend,false,false,harassment,false 353 | webmasto.online,suspend,false,false,spam,false 354 | weedis.life,suspend,false,false,spam,false 355 | whit******.dog,suspend,false,false,inappropriate content,false 356 | wolfgirl.bar,suspend,false,false,hate speech,false 357 | workers.dev,suspend,false,false,botnet,false 358 | x.good.news,suspend,false,false,third-party bots,false 359 | yes***.*et,suspend,false,false,inappropriate content,false 360 | yggdrasil.social,suspend,false,false,hate speech,false 361 | yot**.***ks,suspend,false,false,inappropriate content,false 362 | yot**.*ol,suspend,false,false,inappropriate content,false 363 | you**.**ve,suspend,false,false,inappropriate content,false 364 | youj*.*****ver,suspend,false,false,inappropriate content,false 365 | yum***.cc,suspend,false,false,inappropriate content,false 366 | zet***.**ub,suspend,false,false,inappropriate content,false 367 | zztails.gay,suspend,false,false,hate speech,false 368 | -------------------------------------------------------------------------------- /blocklists/mastodon/seirdy-tier0.csv: -------------------------------------------------------------------------------- 1 | #domain,#severity,#reject_media,#reject_reports,#public_comment,#obfuscate 2 | 000delete.this.line.if.you.have.read.the.documentation.on.seirdy.one,suspend,false,false,delete this line if you have read and understood https://seirdy.one/posts/2023/05/02/fediverse-blocklists/,false 3 | 076.ne.jp,suspend,false,false,,false 4 | 101010.pl,suspend,false,false,,false 5 | 10minutepleroma.com,suspend,false,false,,false 6 | 13bells.com,suspend,false,false,,false 7 | 1611.social,suspend,false,false,,false 8 | 4aem.com,suspend,false,false,,false 9 | 5dollah.click,suspend,false,false,,false 10 | 80percent.social,suspend,false,false,,false 11 | 8777.ch,suspend,false,false,,false 12 | abraham.su,suspend,false,false,,false 13 | absolutelyproprietary.org,suspend,false,false,,false 14 | activitypub-proxy.cf,suspend,false,false,,false 15 | activitypub-troll.cf,suspend,false,false,,false 16 | adachi.party,suspend,false,false,,false 17 | adtension.com,suspend,false,false,,false 18 | aethy.com,suspend,false,false,,false 19 | agdersam.no,suspend,false,false,,false 20 | ai.wiki,suspend,false,false,,false 21 | alive.bar,suspend,false,false,,false 22 | alteregocreations.com,suspend,false,false,,false 23 | ancreport.com,suspend,false,false,,false 24 | ancreport.xyz,suspend,false,false,,false 25 | angrytoday.com,suspend,false,false,,false 26 | annihilation.social,suspend,false,false,,false 27 | anon-kenkai.com,suspend,false,false,,false 28 | asbestos.cafe,suspend,false,false,,false 29 | asimon.org,suspend,false,false,,false 30 | awakari.app,suspend,false,false,,false 31 | awakari.com,suspend,false,false,,false 32 | badly.co,suspend,false,false,,false 33 | bae.st,suspend,false,false,,false 34 | banepo.st,suspend,false,false,,false 35 | baraag.net,suspend,false,false,,false 36 | bassam.social,suspend,false,false,,false 37 | battlepenguin.video,suspend,false,false,,false 38 | beefyboys.club,suspend,false,false,,false 39 | beefyboys.win,suspend,false,false,,false 40 | beepboop.ga,suspend,false,false,,false 41 | berserker.town,suspend,false,false,,false 42 | bgzashtita.es,suspend,false,false,,false 43 | bikeshed.party,suspend,false,false,,false 44 | birds.garden,suspend,false,false,,false 45 | bitcointv.com,suspend,false,false,,false 46 | blockedur.mom,suspend,false,false,,false 47 | boymoder.biz,suspend,false,false,,false 48 | brainsoap.net,suspend,false,false,,false 49 | breastmilk.club,suspend,false,false,,false 50 | brighteon.social,suspend,false,false,,false 51 | burger.rodeo,suspend,false,false,,false 52 | burggit.moe,suspend,false,false,,false 53 | cachapa.cc,suspend,false,false,,false 54 | cachapa.xyz,suspend,false,false,,false 55 | caekis.love,suspend,false,false,,false 56 | calobar.club,suspend,false,false,,false 57 | canary.tier0.example.com,suspend,false,false,,false 58 | cannibal.cafe,suspend,false,false,,false 59 | catposter.club,suspend,false,false,,false 60 | cawfee.club,suspend,false,false,,false 61 | childlove.su,suspend,false,false,,false 62 | clew.lol,suspend,false,false,,false 63 | clubcyberia.co,suspend,false,false,,false 64 | clube.social,suspend,false,false,,false 65 | contrapointsfan.club,suspend,false,false,,false 66 | coolsite.win,suspend,false,false,,false 67 | cottoncandy.cafe,suspend,false,false,,false 68 | crlf.ninja,suspend,false,false,,false 69 | crucible.world,suspend,false,false,,false 70 | cryptodon.lol,suspend,false,false,,false 71 | cryptotooter.com,suspend,false,false,,false 72 | cum.camp,suspend,false,false,,false 73 | cum.salon,suspend,false,false,,false 74 | cunnyborea.space,suspend,false,false,,false 75 | cunnyborea.top,suspend,false,false,,false 76 | cutefunny.net,suspend,false,false,,false 77 | cyberretards.xyz,suspend,false,false,,false 78 | cyberstorm.one,suspend,false,false,,false 79 | d-fens.systems,suspend,false,false,,false 80 | danksquad.org,suspend,false,false,,false 81 | daspr.io,suspend,false,false,,false 82 | decayable.ink,suspend,false,false,,false 83 | declin.eu,suspend,false,false,,false 84 | dembased.xyz,suspend,false,false,,false 85 | detroitriotcity.com,suspend,false,false,,false 86 | dev-wiki.de,suspend,false,false,,false 87 | djsumdog.com,suspend,false,false,,false 88 | dobbs.town,suspend,false,false,,false 89 | drinkanddrive.africa,suspend,false,false,,false 90 | drow.be,suspend,false,false,,false 91 | ebin.club,suspend,false,false,,false 92 | eientei.org,suspend,false,false,,false 93 | endtimebelievers.com,suspend,false,false,,false 94 | enjoyer.network,suspend,false,false,,false 95 | eskimo.com,suspend,false,false,,false 96 | eveningzoo.club,suspend,false,false,,false 97 | fbxl.net,suspend,false,false,,false 98 | federated.fun,suspend,false,false,,false 99 | fediverse-lite.com,suspend,false,false,,false 100 | fedposters.club,suspend,false,false,,false 101 | feministwiki.org,suspend,false,false,,false 102 | feral.cafe,suspend,false,false,,false 103 | fightthis.net,suspend,false,false,,false 104 | firedragonstudios.com,suspend,false,false,,false 105 | fluf.club,suspend,false,false,,false 106 | foxgirl.lol,suspend,false,false,,false 107 | fr13nd5.com,suspend,false,false,,false 108 | freak.university,suspend,false,false,,false 109 | freeatlantis.com,suspend,false,false,,false 110 | freesoftwareextremist.com,suspend,false,false,,false 111 | freespeech.club,suspend,false,false,,false 112 | freespeech.group,suspend,false,false,,false 113 | freespeechextremist.com,suspend,false,false,,false 114 | freetalklive.com,suspend,false,false,,false 115 | freethinkers.lgbt,suspend,false,false,,false 116 | freezepeach.xyz,suspend,false,false,,false 117 | frennet.xyz,suspend,false,false,,false 118 | froth.zone,suspend,false,false,,false 119 | fsebugoutzone.org,suspend,false,false,,false 120 | gab.ai,suspend,false,false,,false 121 | gabe.rocks,suspend,false,false,,false 122 | gameliberty.club,suspend,false,false,,false 123 | gamers.exposed,suspend,false,false,,false 124 | gearlandia.haus,suspend,false,false,,false 125 | genderheretics.xyz,suspend,false,false,,false 126 | gensokyo.club,suspend,false,false,,false 127 | gentoo.live,suspend,false,false,,false 128 | geofront.rocks,suspend,false,false,,false 129 | gh0st.live,suspend,false,false,,false 130 | ghetti.monster,suspend,false,false,,false 131 | gleasonator.com,suspend,false,false,,false 132 | glee.li,suspend,false,false,,false 133 | glindr.org,suspend,false,false,,false 134 | glowers.club,suspend,false,false,,false 135 | gorf.pub,suspend,false,false,,false 136 | goyim.social,suspend,false,false,,false 137 | h5q.net,suspend,false,false,,false 138 | haeder.net,suspend,false,false,,false 139 | hallsofamenti.io,suspend,false,false,,false 140 | handholding.io,suspend,false,false,,false 141 | harpy.faith,suspend,false,false,,false 142 | helladoge.com,suspend,false,false,,false 143 | hendrixgames.com,suspend,false,false,,false 144 | hentai.baby,suspend,false,false,,false 145 | hidamari.apartments,suspend,false,false,,false 146 | hitchhiker.social,suspend,false,false,,false 147 | honkwerx.tech,suspend,false,false,,false 148 | husk.site,suspend,false,false,,false 149 | icod.de,suspend,false,false,,false 150 | iddqd.social,suspend,false,false,,false 151 | ignorelist.com,suspend,false,false,,false 152 | imouto.pics,suspend,false,false,,false 153 | isekco.re,suspend,false,false,,false 154 | justbros.xyz,suspend,false,false,,false 155 | kawa-kun.com,suspend,false,false,,false 156 | kenhbit.com,suspend,false,false,,false 157 | kitsunemimi.club,suspend,false,false,,false 158 | kiwifarms.cc,suspend,false,false,,false 159 | kiwifarms.net,suspend,false,false,,false 160 | kompost.cz,suspend,false,false,,false 161 | krackhou.se,suspend,false,false,,false 162 | kurosawa.moe,suspend,false,false,,false 163 | kyaruc.moe,suspend,false,false,,false 164 | kys.moe,suspend,false,false,,false 165 | lain.gay,suspend,false,false,,false 166 | lain.la,suspend,false,false,,false 167 | lain.sh,suspend,false,false,,false 168 | leafposter.club,suspend,false,false,,false 169 | letsalllovela.in,suspend,false,false,,false 170 | liberdon.com,suspend,false,false,,false 171 | librem.one,suspend,false,false,,false 172 | librenet.co.za,suspend,false,false,,false 173 | librosphere.fr,suspend,false,false,,false 174 | ligma.pro,suspend,false,false,,false 175 | logografos.com,suspend,false,false,,false 176 | loli.church,suspend,false,false,,false 177 | lolicon.rocks,suspend,false,false,,false 178 | lolicon.win,suspend,false,false,,false 179 | lolison.network,suspend,false,false,,false 180 | lolison.top,suspend,false,false,,false 181 | longyap.name.my,suspend,false,false,,false 182 | loveforlandlords.com,suspend,false,false,,false 183 | lovingexpressions.net,suspend,false,false,,false 184 | magicka.org,suspend,false,false,,false 185 | majestic12.airforce,suspend,false,false,,false 186 | makemysarcophagus.com,suspend,false,false,,false 187 | maladaptive.art,suspend,false,false,,false 188 | mapsupport.de,suspend,false,false,,false 189 | marsey.club,suspend,false,false,,false 190 | mastertibbles.co.uk,suspend,false,false,,false 191 | masthead.social,suspend,false,false,,false 192 | mastinator.com,suspend,false,false,,false 193 | mastod.no,suspend,false,false,,false 194 | mastodon.cf,suspend,false,false,,false 195 | mastodon.la,suspend,false,false,,false 196 | mastodong.lol,suspend,false,false,,false 197 | merovingian.club,suspend,false,false,,false 198 | midwaytrades.com,suspend,false,false,,false 199 | miku-enthusiast.club,suspend,false,false,,false 200 | milker.cafe,suspend,false,false,,false 201 | minds.com,suspend,false,false,,false 202 | minidisc.tokyo,suspend,false,false,,false 203 | mirr0r.city,suspend,false,false,,false 204 | misono-ya.info,suspend,false,false,,false 205 | misskey-forkbomb.cf,suspend,false,false,,false 206 | monads.online,suspend,false,false,,false 207 | mooo.com,suspend,false,false,,false 208 | morale.ch,suspend,false,false,,false 209 | mouse.services,suspend,false,false,,false 210 | mrhands.horse,suspend,false,false,,false 211 | mstdn.jp,suspend,false,false,,false 212 | mugicha.club,suspend,false,false,,false 213 | mulmeyun.church,suspend,false,false,,false 214 | nalocal519.social,suspend,false,false,,false 215 | narrativerry.xyz,suspend,false,false,,false 216 | nationalist.social,suspend,false,false,,false 217 | nazi.social,suspend,false,false,,false 218 | needs.vodka,suspend,false,false,,false 219 | neenster.org,suspend,false,false,,false 220 | nekocave.xyz,suspend,false,false,,false 221 | nekos.cafe,suspend,false,false,,false 222 | netzsphaere.xyz,suspend,false,false,,false 223 | nicecrew.digital,suspend,false,false,,false 224 | nightshift.social,suspend,false,false,,false 225 | nixnet.social,suspend,false,false,,false 226 | nnia.cc,suspend,false,false,,false 227 | nnia.space,suspend,false,false,,false 228 | noagendasocial.com,suspend,false,false,,false 229 | noagendatube.com,suspend,false,false,,false 230 | noauthority.social,suspend,false,false,,false 231 | nobodyhasthe.biz,suspend,false,false,,false 232 | norwoodzero.net,suspend,false,false,,false 233 | novoa.nagoya,suspend,false,false,,false 234 | nyanide.com,suspend,false,false,,false 235 | occultist.space,suspend,false,false,,false 236 | oddballs.online,suspend,false,false,,false 237 | onionfarms.org,suspend,false,false,,false 238 | otakufarms.com,suspend,false,false,,false 239 | oti.st,suspend,false,false,,false 240 | outrnat.nl,suspend,false,false,,false 241 | parcero.bond,suspend,false,false,,false 242 | parcero.casa,suspend,false,false,,false 243 | pawlicker.com,suspend,false,false,,false 244 | pawoo.net,suspend,false,false,,false 245 | paypig.org,suspend,false,false,,false 246 | pedo.school,suspend,false,false,,false 247 | peervideo.club,suspend,false,false,,false 248 | peister.org,suspend,false,false,,false 249 | piazza.today,suspend,false,false,,false 250 | pibvt.net,suspend,false,false,,false 251 | pieville.net,suspend,false,false,,false 252 | pisskey.io,suspend,false,false,,false 253 | pkteerium.xyz,suspend,false,false,,false 254 | plagu.ee,suspend,false,false,,false 255 | poa.st,suspend,false,false,,false 256 | poast.org,suspend,false,false,,false 257 | poast.tv,suspend,false,false,,false 258 | pone.social,suspend,false,false,,false 259 | pooper.social,suspend,false,false,,false 260 | poridge.club,suspend,false,false,,false 261 | poster.place,suspend,false,false,,false 262 | pouque.net,suspend,false,false,,false 263 | preteengirls.biz,suspend,false,false,,false 264 | privex.social,suspend,false,false,,false 265 | probablyfreespeech.com,suspend,false,false,,false 266 | prospeech.space,suspend,false,false,,false 267 | pseudo-whiskey.bar,suspend,false,false,,false 268 | psion.co,suspend,false,false,,false 269 | pube.tk,suspend,false,false,,false 270 | quanta.wiki,suspend,false,false,,false 271 | quodverum.com,suspend,false,false,,false 272 | r18.social,suspend,false,false,,false 273 | raccoon.quest,suspend,false,false,,false 274 | rage.lol,suspend,false,false,,false 275 | rakket.app,suspend,false,false,,false 276 | rape.pet,suspend,false,false,,false 277 | rapefeminists.network,suspend,false,false,,false 278 | rapemeat.express,suspend,false,false,,false 279 | rapemeat.solutions,suspend,false,false,,false 280 | ravergram.club,suspend,false,false,,false 281 | rayci.st,suspend,false,false,,false 282 | rcsocial.net,suspend,false,false,,false 283 | rebelbase.site,suspend,false,false,,false 284 | repl.co,suspend,false,false,,false 285 | republic.red,suspend,false,false,,false 286 | rot.gives,suspend,false,false,,false 287 | roysbeer.place,suspend,false,false,,false 288 | ruinouspowe.rs,suspend,false,false,,false 289 | ryona.agency,suspend,false,false,,false 290 | sad.cab,suspend,false,false,,false 291 | satoshishop.de,suspend,false,false,,false 292 | saynoto.lgbt,suspend,false,false,,false 293 | schwartzwelt.xyz,suspend,false,false,,false 294 | scots.network,suspend,false,false,,false 295 | seal.cafe,suspend,false,false,,false 296 | sharivegas.com,suspend,false,false,,false 297 | shaw.app,suspend,false,false,,false 298 | shigusegubu.club,suspend,false,false,,false 299 | shitpost.cloud,suspend,false,false,,false 300 | shitposter.club,suspend,false,false,,false 301 | shitposter.world,suspend,false,false,,false 302 | shortstacksran.ch,suspend,false,false,,false 303 | shota.house,suspend,false,false,,false 304 | shota.social,suspend,false,false,,false 305 | shotatube.xyz,suspend,false,false,,false 306 | shpposter.club,suspend,false,false,,false 307 | shrimpcam.pw,suspend,false,false,,false 308 | shrimpposter.club,suspend,false,false,,false 309 | silliness.observer,suspend,false,false,,false 310 | skinheads.eu,suspend,false,false,,false 311 | skinheads.io,suspend,false,false,,false 312 | skinheads.social,suspend,false,false,,false 313 | skinheads.uk,suspend,false,false,,false 314 | skippers-bin.com,suspend,false,false,,false 315 | skyshanty.xyz,suspend,false,false,,false 316 | slash.cl,suspend,false,false,,false 317 | sleepy.cafe,suspend,false,false,,false 318 | smuglo.li,suspend,false,false,,false 319 | sneak.berlin,suspend,false,false,,false 320 | sneed.social,suspend,false,false,,false 321 | someotherguy.xyz,suspend,false,false,,false 322 | sonichu.com,suspend,false,false,,false 323 | soykaf.com,suspend,false,false,,false 324 | spinster.xyz,suspend,false,false,,false 325 | springbo.cc,suspend,false,false,,false 326 | starnix.network,suspend,false,false,,false 327 | stereophonic.space,suspend,false,false,,false 328 | strelizia.net,suspend,false,false,,false 329 | subs4social.xyz,suspend,false,false,,false 330 | supernets.social,suspend,false,false,,false 331 | taihou.website,suspend,false,false,,false 332 | tastingtraffic.net,suspend,false,false,,false 333 | teci.world,suspend,false,false,,false 334 | terrible.place,suspend,false,false,,false 335 | thebag.social,suspend,false,false,,false 336 | theblab.org,suspend,false,false,,false 337 | thechimp.zone,suspend,false,false,,false 338 | thenobody.club,suspend,false,false,,false 339 | thepostearthdestination.com,suspend,false,false,,false 340 | theres.life,suspend,false,false,,false 341 | tkammer.de,suspend,false,false,,false 342 | touha.me,suspend,false,false,,false 343 | troll.cafe,suspend,false,false,,false 344 | trumpislovetrumpis.life,suspend,false,false,,false 345 | truthsocial.co.in,suspend,false,false,,false 346 | tummy.town,suspend,false,false,,false 347 | tyil.nl,suspend,false,false,,false 348 | ua-fediland.de,suspend,false,false,,false 349 | unbound.social,suspend,false,false,,false 350 | unperson.us,suspend,false,false,,false 351 | unsafe.space,suspend,false,false,,false 352 | urspringer.de,suspend,false,false,,false 353 | usualsuspects.lol,suspend,false,false,,false 354 | uwu.social,suspend,false,false,,false 355 | vampiremaid.cafe,suspend,false,false,,false 356 | varishangout.net,suspend,false,false,,false 357 | vladtepesblog.com,suspend,false,false,,false 358 | waifuism.life,suspend,false,false,,false 359 | weeaboo.space,suspend,false,false,,false 360 | whinge.house,suspend,false,false,,false 361 | whinge.town,suspend,false,false,,false 362 | whitewomen.dog,suspend,false,false,,false 363 | wideboys.org,suspend,false,false,,false 364 | wolfgirl.bar,suspend,false,false,,false 365 | workers.dev,suspend,false,false,,false 366 | writehere.is,suspend,false,false,,false 367 | xn--p1abe3d.xn--80asehdb,suspend,false,false,,false 368 | yesmap.net,suspend,false,false,,false 369 | yggdrasil.social,suspend,false,false,,false 370 | youjo.love,suspend,false,false,,false 371 | zhub.link,suspend,false,false,,false 372 | -------------------------------------------------------------------------------- /blocklists/other/missing-tier0-mastodon.social.csv: -------------------------------------------------------------------------------- 1 | domain,severity,reject_media,reject_reports,public_comment,obfuscate 2 | 076.ne.jp,suspend,False,False,,False 3 | 101010.pl,suspend,False,False,,False 4 | 13bells.com,suspend,False,False,,False 5 | 1611.social,suspend,False,False,,False 6 | 4aem.com,suspend,False,False,,False 7 | 80percent.social,suspend,False,False,,False 8 | 8777.ch,suspend,False,False,,False 9 | adachi.party,suspend,False,False,,False 10 | addy.gg,suspend,False,False,,False 11 | adtension.com,suspend,False,False,,False 12 | agdersam.no,suspend,False,False,,False 13 | ai.wiki,suspend,False,False,,False 14 | alteregocreations.com,suspend,False,False,,False 15 | alterracloud.com,suspend,False,False,,False 16 | ancreport.com,suspend,False,False,,False 17 | ancreport.xyz,suspend,False,False,,False 18 | angrytoday.com,suspend,False,False,,False 19 | anon-kenkai.com,suspend,False,False,,False 20 | asimon.org,suspend,False,False,,False 21 | asteroidm.space,suspend,False,False,,False 22 | ating.press,suspend,False,False,,False 23 | badly.co,suspend,False,False,,False 24 | banepo.st,suspend,False,False,,False 25 | baraag.net,suspend,False,False,,False 26 | bassam.social,suspend,False,False,,False 27 | battlepenguin.video,suspend,False,False,,False 28 | beefyboys.club,suspend,False,False,,False 29 | beepboop.ga,suspend,False,False,,False 30 | berserker.town,suspend,False,False,,False 31 | bikeshed.party,suspend,False,False,,False 32 | birds.garden,suspend,False,False,,False 33 | bitcointv.com,suspend,False,False,,False 34 | blob.cat,suspend,False,False,,False 35 | blockedur.mom,suspend,False,False,,False 36 | boymoder.biz,suspend,False,False,,False 37 | brainsoap.net,suspend,False,False,,False 38 | bungle.online,suspend,False,False,,False 39 | burger.rodeo,suspend,False,False,,False 40 | calobar.club,suspend,False,False,,False 41 | campduffel.social,suspend,False,False,,False 42 | cannibal.cafe,suspend,False,False,,False 43 | carnivore.social,suspend,False,False,,False 44 | catposter.club,suspend,False,False,,False 45 | cdrom.tokyo,suspend,False,False,,False 46 | childlove.su,suspend,False,False,,False 47 | ckpg.space,suspend,False,False,,False 48 | clube.social,suspend,False,False,,False 49 | collapsitarian.io,suspend,False,False,,False 50 | contrapointsfan.club,suspend,False,False,,False 51 | coolsite.win,suspend,False,False,,False 52 | cottoncandy.cafe,suspend,False,False,,False 53 | crlf.ninja,suspend,False,False,,False 54 | crucible.world,suspend,False,False,,False 55 | cryptodon.lol,suspend,False,False,,False 56 | cryptotooter.com,suspend,False,False,,False 57 | cum.camp,suspend,False,False,,False 58 | cunnyborea.space,suspend,False,False,,False 59 | cutefunny.net,suspend,False,False,,False 60 | cybercriminal.eu,suspend,False,False,,False 61 | cyberretards.xyz,suspend,False,False,,False 62 | d-fens.systems,suspend,False,False,,False 63 | danksquad.org,suspend,False,False,,False 64 | daspr.io,suspend,False,False,,False 65 | declin.eu,suspend,False,False,,False 66 | dembased.xyz,suspend,False,False,,False 67 | dev-wiki.de,suspend,False,False,,False 68 | dickkickextremist.xyz,suspend,False,False,,False 69 | dingdash.com,suspend,False,False,,False 70 | djsumdog.com,suspend,False,False,,False 71 | dobbs.town,suspend,False,False,,False 72 | dotnet00.dev,suspend,False,False,,False 73 | dragonpsi.xyz,suspend,False,False,,False 74 | drow.be,suspend,False,False,,False 75 | dtzbts.xyz,suspend,False,False,,False 76 | ebin.club,suspend,False,False,,False 77 | emacs.ch,suspend,False,False,,False 78 | endtimebelievers.com,suspend,False,False,,False 79 | enjoyer.network,suspend,False,False,,False 80 | epenguin.com,suspend,False,False,,False 81 | epsilon.social,suspend,False,False,,False 82 | eskimo.com,suspend,False,False,,False 83 | ey.business,suspend,False,False,,False 84 | fbxl.net,suspend,False,False,,False 85 | federated.fun,suspend,False,False,,False 86 | fedposters.club,suspend,False,False,,False 87 | femboys.love,suspend,False,False,,False 88 | feral.cafe,suspend,False,False,,False 89 | fightthis.net,suspend,False,False,,False 90 | firedragonstudios.com,suspend,False,False,,False 91 | fluf.club,suspend,False,False,,False 92 | foxgirl.lol,suspend,False,False,,False 93 | freak.university,suspend,False,False,,False 94 | freespeech.group,suspend,False,False,,False 95 | freetalklive.com,suspend,False,False,,False 96 | freethinkers.lgbt,suspend,False,False,,False 97 | froth.zone,suspend,False,False,,False 98 | gabe.rocks,suspend,False,False,,False 99 | gamers.exposed,suspend,False,False,,False 100 | gangstalking.services,suspend,False,False,,False 101 | gearlandia.haus,suspend,False,False,,False 102 | gensokyo.club,suspend,False,False,,False 103 | gentoo.live,suspend,False,False,,False 104 | geofront.rocks,suspend,False,False,,False 105 | ghetti.monster,suspend,False,False,,False 106 | glee.li,suspend,False,False,,False 107 | gorf.pub,suspend,False,False,,False 108 | goyim.app,suspend,False,False,,False 109 | haeder.net,suspend,False,False,,False 110 | hallsofamenti.io,suspend,False,False,,False 111 | handholding.io,suspend,False,False,,False 112 | handicapped.tk,suspend,False,False,,False 113 | hedgehoghunter.club,suspend,False,False,,False 114 | helladoge.com,suspend,False,False,,False 115 | hendrixgames.com,suspend,False,False,,False 116 | hentai.baby,suspend,False,False,,False 117 | hidamari.apartments,suspend,False,False,,False 118 | hirad.it,suspend,False,False,,False 119 | hitchhiker.social,suspend,False,False,,False 120 | homd.xyz,suspend,False,False,,False 121 | hornyjail.pro,suspend,False,False,,False 122 | husk.site,suspend,False,False,,False 123 | icod.de,suspend,False,False,,False 124 | ignorelist.com,suspend,False,False,,False 125 | imirhil.fr,suspend,False,False,,False 126 | inferencium.net,suspend,False,False,,False 127 | inumbra.xyz,suspend,False,False,,False 128 | ironbug.org,suspend,False,False,,False 129 | justbros.xyz,suspend,False,False,,False 130 | kawa-kun.com,suspend,False,False,,False 131 | kelarima.com,suspend,False,False,,False 132 | kenhbit.com,suspend,False,False,,False 133 | kitsunemimi.club,suspend,False,False,,False 134 | kompost.cz,suspend,False,False,,False 135 | krackhou.se,suspend,False,False,,False 136 | kyaruc.moe,suspend,False,False,,False 137 | kys.moe,suspend,False,False,,False 138 | lain.gay,suspend,False,False,,False 139 | lain.la,suspend,False,False,,False 140 | lain.sh,suspend,False,False,,False 141 | letsalllovela.in,suspend,False,False,,False 142 | lewdieheaven.com,suspend,False,False,,False 143 | liberdon.com,suspend,False,False,,False 144 | librem.one,suspend,False,False,,False 145 | librenet.co.za,suspend,False,False,,False 146 | librosphere.fr,suspend,False,False,,False 147 | ligma.pro,suspend,False,False,,False 148 | logografos.com,suspend,False,False,,False 149 | loli.church,suspend,False,False,,False 150 | lolicon.rocks,suspend,False,False,,False 151 | lolicon.win,suspend,False,False,,False 152 | lolison.network,suspend,False,False,,False 153 | lolison.top,suspend,False,False,,False 154 | longyap.name.my,suspend,False,False,,False 155 | loveforlandlords.com,suspend,False,False,,False 156 | lovingexpressions.net,suspend,False,False,,False 157 | lucasvl.nl,suspend,False,False,,False 158 | makemysarcophagus.com,suspend,False,False,,False 159 | maladaptive.art,suspend,False,False,,False 160 | mapsupport.de,suspend,False,False,,False 161 | marsey.club,suspend,False,False,,False 162 | mastertibbles.co.uk,suspend,False,False,,False 163 | masthead.social,suspend,False,False,,False 164 | mastodon.cf,suspend,False,False,,False 165 | mastodon.la,suspend,False,False,,False 166 | mastodon.se,suspend,False,False,,False 167 | mastodong.lol,suspend,False,False,,False 168 | meld.de,suspend,False,False,,False 169 | meme.moe,suspend,False,False,,False 170 | midnightride.rs,suspend,False,False,,False 171 | midwaytrades.com,suspend,False,False,,False 172 | miku-enthusiast.club,suspend,False,False,,False 173 | milker.cafe,suspend,False,False,,False 174 | minds.com,suspend,False,False,,False 175 | minidisc.tokyo,suspend,False,False,,False 176 | mirr0r.city,suspend,False,False,,False 177 | misono-ya.info,suspend,False,False,,False 178 | mitra.social,suspend,False,False,,False 179 | mooo.com,suspend,False,False,,False 180 | morale.ch,suspend,False,False,,False 181 | mrhands.horse,suspend,False,False,,False 182 | mstdn.jp,suspend,False,False,,False 183 | mulmeyun.church,suspend,False,False,,False 184 | nalocal519.social,suspend,False,False,,False 185 | narrativerry.xyz,suspend,False,False,,False 186 | natehiggers.online,suspend,False,False,,False 187 | needs.vodka,suspend,False,False,,False 188 | neenster.org,suspend,False,False,,False 189 | nekocave.xyz,suspend,False,False,,False 190 | neomobius.com,suspend,False,False,,False 191 | nightshift.social,suspend,False,False,,False 192 | niscii.xyz,suspend,False,False,,False 193 | nixnet.social,suspend,False,False,,False 194 | nnia.cc,suspend,False,False,,False 195 | nnia.space,suspend,False,False,,False 196 | noagendasocial.nl,suspend,False,False,,False 197 | noagendatube.com,suspend,False,False,,False 198 | nobodyhasthe.biz,suspend,False,False,,False 199 | normie.cafe,suspend,False,False,,False 200 | novoa.nagoya,suspend,False,False,,False 201 | obo.sh,suspend,False,False,,False 202 | occultist.space,suspend,False,False,,False 203 | oddballs.online,suspend,False,False,,False 204 | onionfarms.org,suspend,False,False,,False 205 | otakufarms.com,suspend,False,False,,False 206 | oti.st,suspend,False,False,,False 207 | outerkosm.us,suspend,False,False,,False 208 | outrnat.nl,suspend,False,False,,False 209 | pawlicker.com,suspend,False,False,,False 210 | pedo.school,suspend,False,False,,False 211 | peervideo.club,suspend,False,False,,False 212 | pettanko.art,suspend,False,False,,False 213 | piazza.today,suspend,False,False,,False 214 | pibvt.net,suspend,False,False,,False 215 | pizzaf.art,suspend,False,False,,False 216 | pkteerium.xyz,suspend,False,False,,False 217 | plagu.ee,suspend,False,False,,False 218 | poast.org,suspend,False,False,,False 219 | poast.tv,suspend,False,False,,False 220 | polaris-1.work,suspend,False,False,,False 221 | pone.social,suspend,False,False,,False 222 | poridge.club,suspend,False,False,,False 223 | poweredbycocaine.com,suspend,False,False,,False 224 | press.coop,suspend,False,False,,False 225 | preteengirls.biz,suspend,False,False,,False 226 | privex.social,suspend,False,False,,False 227 | prospeech.space,suspend,False,False,,False 228 | pseudo-whiskey.bar,suspend,False,False,,False 229 | psion.co,suspend,False,False,,False 230 | pube.tk,suspend,False,False,,False 231 | quanta.wiki,suspend,False,False,,False 232 | quodverum.com,suspend,False,False,,False 233 | r18.social,suspend,False,False,,False 234 | raccoon.quest,suspend,False,False,,False 235 | rage.lol,suspend,False,False,,False 236 | rape.pet,suspend,False,False,,False 237 | rapefeminists.network,suspend,False,False,,False 238 | rapemeat.solutions,suspend,False,False,,False 239 | rayci.st,suspend,False,False,,False 240 | rcsocial.net,suspend,False,False,,False 241 | rebelbase.site,suspend,False,False,,False 242 | republic.red,suspend,False,False,,False 243 | rojogato.com,suspend,False,False,,False 244 | rot.gives,suspend,False,False,,False 245 | roysbeer.place,suspend,False,False,,False 246 | ruinouspowe.rs,suspend,False,False,,False 247 | sad.cab,suspend,False,False,,False 248 | satoshishop.de,suspend,False,False,,False 249 | saynoto.lgbt,suspend,False,False,,False 250 | scots.network,suspend,False,False,,False 251 | shadowsocial.org,suspend,False,False,,False 252 | sharivegas.com,suspend,False,False,,False 253 | shaw.app,suspend,False,False,,False 254 | sheep.network,suspend,False,False,,False 255 | shigusegubu.club,suspend,False,False,,False 256 | shota.house,suspend,False,False,,False 257 | shota.social,suspend,False,False,,False 258 | shotatube.xyz,suspend,False,False,,False 259 | shpposter.club,suspend,False,False,,False 260 | silliness.observer,suspend,False,False,,False 261 | skinheads.eu,suspend,False,False,,False 262 | skinheads.io,suspend,False,False,,False 263 | skinheads.uk,suspend,False,False,,False 264 | skippers-bin.com,suspend,False,False,,False 265 | skyshanty.xyz,suspend,False,False,,False 266 | slash.cl,suspend,False,False,,False 267 | smuglo.li,suspend,False,False,,False 268 | sneak.berlin,suspend,False,False,,False 269 | someotherguy.xyz,suspend,False,False,,False 270 | sonichu.com,suspend,False,False,,False 271 | soykaf.com,suspend,False,False,,False 272 | springbo.cc,suspend,False,False,,False 273 | starnix.network,suspend,False,False,,False 274 | staycuriousandkeepsmil.in,suspend,False,False,,False 275 | stereophonic.space,suspend,False,False,,False 276 | taihou.website,suspend,False,False,,False 277 | takesama.com,suspend,False,False,,False 278 | teci.world,suspend,False,False,,False 279 | terrible.place,suspend,False,False,,False 280 | theapex.social,suspend,False,False,,False 281 | thebag.social,suspend,False,False,,False 282 | thechimp.zone,suspend,False,False,,False 283 | thenobody.club,suspend,False,False,,False 284 | thepostearthdestination.com,suspend,False,False,,False 285 | theres.life,suspend,False,False,,False 286 | tkammer.de,suspend,False,False,,False 287 | tooters.fun,suspend,False,False,,False 288 | touha.me,suspend,False,False,,False 289 | troll.cafe,suspend,False,False,,False 290 | trumpislovetrumpis.life,suspend,False,False,,False 291 | truthsocial.co.in,suspend,False,False,,False 292 | tummy.town,suspend,False,False,,False 293 | twi.social,suspend,False,False,,False 294 | tyil.nl,suspend,False,False,,False 295 | ua-fediland.de,suspend,False,False,,False 296 | umbrellix.org,suspend,False,False,,False 297 | unbound.social,suspend,False,False,,False 298 | unperson.us,suspend,False,False,,False 299 | unsafe.space,suspend,False,False,,False 300 | ursal.zone,suspend,False,False,,False 301 | urspringer.de,suspend,False,False,,False 302 | usualsuspects.lol,suspend,False,False,,False 303 | uwu.social,suspend,False,False,,False 304 | vampiremaid.cafe,suspend,False,False,,False 305 | varishangout.net,suspend,False,False,,False 306 | vladtepesblog.com,suspend,False,False,,False 307 | vrij.social,suspend,False,False,,False 308 | vtuberfan.social,suspend,False,False,,False 309 | waifuism.life,suspend,False,False,,False 310 | weeaboo.space,suspend,False,False,,False 311 | whinge.house,suspend,False,False,,False 312 | whinge.town,suspend,False,False,,False 313 | whitewomen.dog,suspend,False,False,,False 314 | wideboys.org,suspend,False,False,,False 315 | wikileaks2.org,suspend,False,False,,False 316 | writehere.is,suspend,False,False,,False 317 | xhais.love,suspend,False,False,,False 318 | xmrposter.club,suspend,False,False,,False 319 | xn--p1abe3d.xn--80asehdb,suspend,False,False,,False 320 | youjo.love,suspend,False,False,,False 321 | zhub.link,suspend,False,False,,False 322 | -------------------------------------------------------------------------------- /blocklists/seirdy-tier0.csv: -------------------------------------------------------------------------------- 1 | domain,severity,reject_media,reject_reports,public_comment,obfuscate 2 | 000delete.this.line.if.you.have.read.the.documentation.on.seirdy.one,suspend,False,False,delete this line if you have read and understood https://seirdy.one/posts/2023/05/02/fediverse-blocklists/,False 3 | 076.ne.jp,suspend,False,False,,False 4 | 101010.pl,suspend,False,False,,False 5 | 10minutepleroma.com,suspend,False,False,,False 6 | 13bells.com,suspend,False,False,,False 7 | 1611.social,suspend,False,False,,False 8 | 4aem.com,suspend,False,False,,False 9 | 5dollah.click,suspend,False,False,,False 10 | 80percent.social,suspend,False,False,,False 11 | 8777.ch,suspend,False,False,,False 12 | abraham.su,suspend,False,False,,False 13 | absolutelyproprietary.org,suspend,False,False,,False 14 | activitypub-proxy.cf,suspend,False,False,,False 15 | activitypub-troll.cf,suspend,False,False,,False 16 | adachi.party,suspend,False,False,,False 17 | adtension.com,suspend,False,False,,False 18 | aethy.com,suspend,False,False,,False 19 | agdersam.no,suspend,False,False,,False 20 | ai.wiki,suspend,False,False,,False 21 | alive.bar,suspend,False,False,,False 22 | alteregocreations.com,suspend,False,False,,False 23 | ancreport.com,suspend,False,False,,False 24 | ancreport.xyz,suspend,False,False,,False 25 | angrytoday.com,suspend,False,False,,False 26 | annihilation.social,suspend,False,False,,False 27 | anon-kenkai.com,suspend,False,False,,False 28 | asbestos.cafe,suspend,False,False,,False 29 | asimon.org,suspend,False,False,,False 30 | awakari.app,suspend,False,False,,False 31 | awakari.com,suspend,False,False,,False 32 | badly.co,suspend,False,False,,False 33 | bae.st,suspend,False,False,,False 34 | banepo.st,suspend,False,False,,False 35 | baraag.net,suspend,False,False,,False 36 | bassam.social,suspend,False,False,,False 37 | battlepenguin.video,suspend,False,False,,False 38 | beefyboys.club,suspend,False,False,,False 39 | beefyboys.win,suspend,False,False,,False 40 | beepboop.ga,suspend,False,False,,False 41 | berserker.town,suspend,False,False,,False 42 | bgzashtita.es,suspend,False,False,,False 43 | bikeshed.party,suspend,False,False,,False 44 | birds.garden,suspend,False,False,,False 45 | bitcointv.com,suspend,False,False,,False 46 | blockedur.mom,suspend,False,False,,False 47 | boymoder.biz,suspend,False,False,,False 48 | brainsoap.net,suspend,False,False,,False 49 | breastmilk.club,suspend,False,False,,False 50 | brighteon.social,suspend,False,False,,False 51 | burger.rodeo,suspend,False,False,,False 52 | burggit.moe,suspend,False,False,,False 53 | cachapa.cc,suspend,False,False,,False 54 | cachapa.xyz,suspend,False,False,,False 55 | caekis.love,suspend,False,False,,False 56 | calobar.club,suspend,False,False,,False 57 | canary.tier0.example.com,suspend,False,False,,False 58 | cannibal.cafe,suspend,False,False,,False 59 | catposter.club,suspend,False,False,,False 60 | cawfee.club,suspend,False,False,,False 61 | childlove.su,suspend,False,False,,False 62 | clew.lol,suspend,False,False,,False 63 | clubcyberia.co,suspend,False,False,,False 64 | clube.social,suspend,False,False,,False 65 | contrapointsfan.club,suspend,False,False,,False 66 | coolsite.win,suspend,False,False,,False 67 | cottoncandy.cafe,suspend,False,False,,False 68 | crlf.ninja,suspend,False,False,,False 69 | crucible.world,suspend,False,False,,False 70 | cryptodon.lol,suspend,False,False,,False 71 | cryptotooter.com,suspend,False,False,,False 72 | cum.camp,suspend,False,False,,False 73 | cum.salon,suspend,False,False,,False 74 | cunnyborea.space,suspend,False,False,,False 75 | cunnyborea.top,suspend,False,False,,False 76 | cutefunny.net,suspend,False,False,,False 77 | cyberretards.xyz,suspend,False,False,,False 78 | cyberstorm.one,suspend,False,False,,False 79 | d-fens.systems,suspend,False,False,,False 80 | danksquad.org,suspend,False,False,,False 81 | daspr.io,suspend,False,False,,False 82 | decayable.ink,suspend,False,False,,False 83 | declin.eu,suspend,False,False,,False 84 | dembased.xyz,suspend,False,False,,False 85 | detroitriotcity.com,suspend,False,False,,False 86 | dev-wiki.de,suspend,False,False,,False 87 | djsumdog.com,suspend,False,False,,False 88 | dobbs.town,suspend,False,False,,False 89 | drinkanddrive.africa,suspend,False,False,,False 90 | drow.be,suspend,False,False,,False 91 | ebin.club,suspend,False,False,,False 92 | eientei.org,suspend,False,False,,False 93 | endtimebelievers.com,suspend,False,False,,False 94 | enjoyer.network,suspend,False,False,,False 95 | eskimo.com,suspend,False,False,,False 96 | eveningzoo.club,suspend,False,False,,False 97 | fbxl.net,suspend,False,False,,False 98 | federated.fun,suspend,False,False,,False 99 | fediverse-lite.com,suspend,False,False,,False 100 | fedposters.club,suspend,False,False,,False 101 | feministwiki.org,suspend,False,False,,False 102 | feral.cafe,suspend,False,False,,False 103 | fightthis.net,suspend,False,False,,False 104 | firedragonstudios.com,suspend,False,False,,False 105 | fluf.club,suspend,False,False,,False 106 | foxgirl.lol,suspend,False,False,,False 107 | fr13nd5.com,suspend,False,False,,False 108 | freak.university,suspend,False,False,,False 109 | freeatlantis.com,suspend,False,False,,False 110 | freesoftwareextremist.com,suspend,False,False,,False 111 | freespeech.club,suspend,False,False,,False 112 | freespeech.group,suspend,False,False,,False 113 | freespeechextremist.com,suspend,False,False,,False 114 | freetalklive.com,suspend,False,False,,False 115 | freethinkers.lgbt,suspend,False,False,,False 116 | freezepeach.xyz,suspend,False,False,,False 117 | frennet.xyz,suspend,False,False,,False 118 | froth.zone,suspend,False,False,,False 119 | fsebugoutzone.org,suspend,False,False,,False 120 | gab.ai,suspend,False,False,,False 121 | gabe.rocks,suspend,False,False,,False 122 | gameliberty.club,suspend,False,False,,False 123 | gamers.exposed,suspend,False,False,,False 124 | gearlandia.haus,suspend,False,False,,False 125 | genderheretics.xyz,suspend,False,False,,False 126 | gensokyo.club,suspend,False,False,,False 127 | gentoo.live,suspend,False,False,,False 128 | geofront.rocks,suspend,False,False,,False 129 | gh0st.live,suspend,False,False,,False 130 | ghetti.monster,suspend,False,False,,False 131 | gleasonator.com,suspend,False,False,,False 132 | glee.li,suspend,False,False,,False 133 | glindr.org,suspend,False,False,,False 134 | glowers.club,suspend,False,False,,False 135 | gorf.pub,suspend,False,False,,False 136 | goyim.social,suspend,False,False,,False 137 | h5q.net,suspend,False,False,,False 138 | haeder.net,suspend,False,False,,False 139 | hallsofamenti.io,suspend,False,False,,False 140 | handholding.io,suspend,False,False,,False 141 | harpy.faith,suspend,False,False,,False 142 | helladoge.com,suspend,False,False,,False 143 | hendrixgames.com,suspend,False,False,,False 144 | hentai.baby,suspend,False,False,,False 145 | hidamari.apartments,suspend,False,False,,False 146 | hitchhiker.social,suspend,False,False,,False 147 | honkwerx.tech,suspend,False,False,,False 148 | husk.site,suspend,False,False,,False 149 | icod.de,suspend,False,False,,False 150 | iddqd.social,suspend,False,False,,False 151 | ignorelist.com,suspend,False,False,,False 152 | imouto.pics,suspend,False,False,,False 153 | isekco.re,suspend,False,False,,False 154 | justbros.xyz,suspend,False,False,,False 155 | kawa-kun.com,suspend,False,False,,False 156 | kenhbit.com,suspend,False,False,,False 157 | kitsunemimi.club,suspend,False,False,,False 158 | kiwifarms.cc,suspend,False,False,,False 159 | kiwifarms.net,suspend,False,False,,False 160 | kompost.cz,suspend,False,False,,False 161 | krackhou.se,suspend,False,False,,False 162 | kurosawa.moe,suspend,False,False,,False 163 | kyaruc.moe,suspend,False,False,,False 164 | kys.moe,suspend,False,False,,False 165 | lain.gay,suspend,False,False,,False 166 | lain.la,suspend,False,False,,False 167 | lain.sh,suspend,False,False,,False 168 | leafposter.club,suspend,False,False,,False 169 | letsalllovela.in,suspend,False,False,,False 170 | liberdon.com,suspend,False,False,,False 171 | librem.one,suspend,False,False,,False 172 | librenet.co.za,suspend,False,False,,False 173 | librosphere.fr,suspend,False,False,,False 174 | ligma.pro,suspend,False,False,,False 175 | logografos.com,suspend,False,False,,False 176 | loli.church,suspend,False,False,,False 177 | lolicon.rocks,suspend,False,False,,False 178 | lolicon.win,suspend,False,False,,False 179 | lolison.network,suspend,False,False,,False 180 | lolison.top,suspend,False,False,,False 181 | longyap.name.my,suspend,False,False,,False 182 | loveforlandlords.com,suspend,False,False,,False 183 | lovingexpressions.net,suspend,False,False,,False 184 | magicka.org,suspend,False,False,,False 185 | majestic12.airforce,suspend,False,False,,False 186 | makemysarcophagus.com,suspend,False,False,,False 187 | maladaptive.art,suspend,False,False,,False 188 | mapsupport.de,suspend,False,False,,False 189 | marsey.club,suspend,False,False,,False 190 | mastertibbles.co.uk,suspend,False,False,,False 191 | masthead.social,suspend,False,False,,False 192 | mastinator.com,suspend,False,False,,False 193 | mastod.no,suspend,False,False,,False 194 | mastodon.cf,suspend,False,False,,False 195 | mastodon.la,suspend,False,False,,False 196 | mastodong.lol,suspend,False,False,,False 197 | merovingian.club,suspend,False,False,,False 198 | midwaytrades.com,suspend,False,False,,False 199 | miku-enthusiast.club,suspend,False,False,,False 200 | milker.cafe,suspend,False,False,,False 201 | minds.com,suspend,False,False,,False 202 | minidisc.tokyo,suspend,False,False,,False 203 | mirr0r.city,suspend,False,False,,False 204 | misono-ya.info,suspend,False,False,,False 205 | misskey-forkbomb.cf,suspend,False,False,,False 206 | monads.online,suspend,False,False,,False 207 | mooo.com,suspend,False,False,,False 208 | morale.ch,suspend,False,False,,False 209 | mouse.services,suspend,False,False,,False 210 | mrhands.horse,suspend,False,False,,False 211 | mstdn.jp,suspend,False,False,,False 212 | mugicha.club,suspend,False,False,,False 213 | mulmeyun.church,suspend,False,False,,False 214 | nalocal519.social,suspend,False,False,,False 215 | narrativerry.xyz,suspend,False,False,,False 216 | nationalist.social,suspend,False,False,,False 217 | nazi.social,suspend,False,False,,False 218 | needs.vodka,suspend,False,False,,False 219 | neenster.org,suspend,False,False,,False 220 | nekocave.xyz,suspend,False,False,,False 221 | nekos.cafe,suspend,False,False,,False 222 | netzsphaere.xyz,suspend,False,False,,False 223 | nicecrew.digital,suspend,False,False,,False 224 | nightshift.social,suspend,False,False,,False 225 | nixnet.social,suspend,False,False,,False 226 | nnia.cc,suspend,False,False,,False 227 | nnia.space,suspend,False,False,,False 228 | noagendasocial.com,suspend,False,False,,False 229 | noagendatube.com,suspend,False,False,,False 230 | noauthority.social,suspend,False,False,,False 231 | nobodyhasthe.biz,suspend,False,False,,False 232 | norwoodzero.net,suspend,False,False,,False 233 | novoa.nagoya,suspend,False,False,,False 234 | nyanide.com,suspend,False,False,,False 235 | occultist.space,suspend,False,False,,False 236 | oddballs.online,suspend,False,False,,False 237 | onionfarms.org,suspend,False,False,,False 238 | otakufarms.com,suspend,False,False,,False 239 | oti.st,suspend,False,False,,False 240 | outrnat.nl,suspend,False,False,,False 241 | parcero.bond,suspend,False,False,,False 242 | parcero.casa,suspend,False,False,,False 243 | pawlicker.com,suspend,False,False,,False 244 | pawoo.net,suspend,False,False,,False 245 | paypig.org,suspend,False,False,,False 246 | pedo.school,suspend,False,False,,False 247 | peervideo.club,suspend,False,False,,False 248 | peister.org,suspend,False,False,,False 249 | piazza.today,suspend,False,False,,False 250 | pibvt.net,suspend,False,False,,False 251 | pieville.net,suspend,False,False,,False 252 | pisskey.io,suspend,False,False,,False 253 | pkteerium.xyz,suspend,False,False,,False 254 | plagu.ee,suspend,False,False,,False 255 | poa.st,suspend,False,False,,False 256 | poast.org,suspend,False,False,,False 257 | poast.tv,suspend,False,False,,False 258 | pone.social,suspend,False,False,,False 259 | pooper.social,suspend,False,False,,False 260 | poridge.club,suspend,False,False,,False 261 | poster.place,suspend,False,False,,False 262 | pouque.net,suspend,False,False,,False 263 | preteengirls.biz,suspend,False,False,,False 264 | privex.social,suspend,False,False,,False 265 | probablyfreespeech.com,suspend,False,False,,False 266 | prospeech.space,suspend,False,False,,False 267 | pseudo-whiskey.bar,suspend,False,False,,False 268 | psion.co,suspend,False,False,,False 269 | pube.tk,suspend,False,False,,False 270 | quanta.wiki,suspend,False,False,,False 271 | quodverum.com,suspend,False,False,,False 272 | r18.social,suspend,False,False,,False 273 | raccoon.quest,suspend,False,False,,False 274 | rage.lol,suspend,False,False,,False 275 | rakket.app,suspend,False,False,,False 276 | rape.pet,suspend,False,False,,False 277 | rapefeminists.network,suspend,False,False,,False 278 | rapemeat.express,suspend,False,False,,False 279 | rapemeat.solutions,suspend,False,False,,False 280 | ravergram.club,suspend,False,False,,False 281 | rayci.st,suspend,False,False,,False 282 | rcsocial.net,suspend,False,False,,False 283 | rebelbase.site,suspend,False,False,,False 284 | repl.co,suspend,False,False,,False 285 | republic.red,suspend,False,False,,False 286 | rot.gives,suspend,False,False,,False 287 | roysbeer.place,suspend,False,False,,False 288 | ruinouspowe.rs,suspend,False,False,,False 289 | ryona.agency,suspend,False,False,,False 290 | sad.cab,suspend,False,False,,False 291 | satoshishop.de,suspend,False,False,,False 292 | saynoto.lgbt,suspend,False,False,,False 293 | schwartzwelt.xyz,suspend,False,False,,False 294 | scots.network,suspend,False,False,,False 295 | seal.cafe,suspend,False,False,,False 296 | sharivegas.com,suspend,False,False,,False 297 | shaw.app,suspend,False,False,,False 298 | shigusegubu.club,suspend,False,False,,False 299 | shitpost.cloud,suspend,False,False,,False 300 | shitposter.club,suspend,False,False,,False 301 | shitposter.world,suspend,False,False,,False 302 | shortstacksran.ch,suspend,False,False,,False 303 | shota.house,suspend,False,False,,False 304 | shota.social,suspend,False,False,,False 305 | shotatube.xyz,suspend,False,False,,False 306 | shpposter.club,suspend,False,False,,False 307 | shrimpcam.pw,suspend,False,False,,False 308 | shrimpposter.club,suspend,False,False,,False 309 | silliness.observer,suspend,False,False,,False 310 | skinheads.eu,suspend,False,False,,False 311 | skinheads.io,suspend,False,False,,False 312 | skinheads.social,suspend,False,False,,False 313 | skinheads.uk,suspend,False,False,,False 314 | skippers-bin.com,suspend,False,False,,False 315 | skyshanty.xyz,suspend,False,False,,False 316 | slash.cl,suspend,False,False,,False 317 | sleepy.cafe,suspend,False,False,,False 318 | smuglo.li,suspend,False,False,,False 319 | sneak.berlin,suspend,False,False,,False 320 | sneed.social,suspend,False,False,,False 321 | someotherguy.xyz,suspend,False,False,,False 322 | sonichu.com,suspend,False,False,,False 323 | soykaf.com,suspend,False,False,,False 324 | spinster.xyz,suspend,False,False,,False 325 | springbo.cc,suspend,False,False,,False 326 | starnix.network,suspend,False,False,,False 327 | stereophonic.space,suspend,False,False,,False 328 | strelizia.net,suspend,False,False,,False 329 | subs4social.xyz,suspend,False,False,,False 330 | supernets.social,suspend,False,False,,False 331 | taihou.website,suspend,False,False,,False 332 | tastingtraffic.net,suspend,False,False,,False 333 | teci.world,suspend,False,False,,False 334 | terrible.place,suspend,False,False,,False 335 | thebag.social,suspend,False,False,,False 336 | theblab.org,suspend,False,False,,False 337 | thechimp.zone,suspend,False,False,,False 338 | thenobody.club,suspend,False,False,,False 339 | thepostearthdestination.com,suspend,False,False,,False 340 | theres.life,suspend,False,False,,False 341 | tkammer.de,suspend,False,False,,False 342 | touha.me,suspend,False,False,,False 343 | troll.cafe,suspend,False,False,,False 344 | trumpislovetrumpis.life,suspend,False,False,,False 345 | truthsocial.co.in,suspend,False,False,,False 346 | tummy.town,suspend,False,False,,False 347 | tyil.nl,suspend,False,False,,False 348 | ua-fediland.de,suspend,False,False,,False 349 | unbound.social,suspend,False,False,,False 350 | unperson.us,suspend,False,False,,False 351 | unsafe.space,suspend,False,False,,False 352 | urspringer.de,suspend,False,False,,False 353 | usualsuspects.lol,suspend,False,False,,False 354 | uwu.social,suspend,False,False,,False 355 | vampiremaid.cafe,suspend,False,False,,False 356 | varishangout.net,suspend,False,False,,False 357 | vladtepesblog.com,suspend,False,False,,False 358 | waifuism.life,suspend,False,False,,False 359 | weeaboo.space,suspend,False,False,,False 360 | whinge.house,suspend,False,False,,False 361 | whinge.town,suspend,False,False,,False 362 | whitewomen.dog,suspend,False,False,,False 363 | wideboys.org,suspend,False,False,,False 364 | wolfgirl.bar,suspend,False,False,,False 365 | workers.dev,suspend,False,False,,False 366 | writehere.is,suspend,False,False,,False 367 | xn--p1abe3d.xn--80asehdb,suspend,False,False,,False 368 | yesmap.net,suspend,False,False,,False 369 | yggdrasil.social,suspend,False,False,,False 370 | youjo.love,suspend,False,False,,False 371 | zhub.link,suspend,False,False,,False 372 | -------------------------------------------------------------------------------- /config/example-server-export.conf.toml: -------------------------------------------------------------------------------- 1 | ## Example Server Export File 2 | 3 | # List of instances to read blocklists from. 4 | # If the instance makes its blocklist public, no authorization token is needed. 5 | # Otherwise, `token` is a Bearer token authorised to read domain_blocks. 6 | # If `admin` = True, use the more detailed admin API, which requires a token with a 7 | # higher level of authorization. 8 | # If `import_fields` are provided, only import these fields from the instance. 9 | # Overrides the global `import_fields` setting. 10 | blocklist_instance_sources = [] 11 | 12 | # List of URLs to read csv blocklists from 13 | # Format tells the parser which format to use when parsing the blocklist 14 | # max_severity tells the parser to override any severities that are higher than this value 15 | # import_fields tells the parser to only import that set of fields from a specific source 16 | blocklist_url_sources = [ 17 | { url = 'file:///opt/fediblockhole/blocklists/_unified_tier0_blocklist.csv', format = 'csv' }, 18 | ] 19 | 20 | # List of instances to write blocklist to 21 | blocklist_instance_destinations = [ 22 | { domain = 'server.example.com', token = '', max_followed_severity = 'silence'}, 23 | ] 24 | 25 | allowlist_url_sources = [ 26 | { url = 'file:///opt/fediblockhole/blocklists/__allowlist.csv', format = 'csv' }, 27 | ] 28 | 29 | ## Store a local copy of the remote blocklists after we fetch them 30 | save_intermediate = false 31 | 32 | ## Directory to store the local blocklist copies 33 | savedir = '/opt/fediblockhole/blocklists/' 34 | 35 | ## File to save the fully merged blocklist into 36 | blocklist_savefile = '/opt/fediblockhole/exports/example_server_blocklist.csv' 37 | 38 | ## Don't push blocklist to instances, even if they're defined above 39 | no_push_instance = false 40 | 41 | ## Don't fetch blocklists from URLs, even if they're defined above 42 | # no_fetch_url = false 43 | 44 | ## Don't fetch blocklists from instances, even if they're defined above 45 | # no_fetch_instance = false 46 | 47 | ## Set the mergeplan to use when dealing with overlaps between blocklists 48 | # The default 'max' mergeplan will use the harshest severity block found for a domain. 49 | # The 'min' mergeplan will use the lightest severity block found for a domain. 50 | mergeplan = 'min' 51 | 52 | ## Set which fields we import 53 | ## 'domain' and 'severity' are always imported, these are additional 54 | ## 55 | #import_fields = ['reject_media', 'reject_reports', 'obfuscate'] 56 | import_fields = ['public_comment', 'reject_media', 'reject_reports', 'obfuscate'] 57 | 58 | ## Set which fields we export 59 | ## 'domain' and 'severity' are always exported, these are additional 60 | ## 61 | export_fields = ['reject_media', 'reject_reports', 'public_comment', 'obfuscate'] 62 | -------------------------------------------------------------------------------- /config/pull.conf.toml: -------------------------------------------------------------------------------- 1 | blocklist_instance_sources = [ 2 | { domain = 'mastodon.social' }, 3 | { domain = 'mastodon.online' }, 4 | ] 5 | 6 | blocklist_url_sources = [ 7 | # tier 0 8 | { url = 'https://seirdy.one/pb/tier0.csv', format = 'csv'}, 9 | { url = 'https://raw.githubusercontent.com/gardenfence/blocklist/main/gardenfence-fediblocksync.csv', format = 'csv'} 10 | ] 11 | 12 | allowlist_url_sources = [ 13 | { url = 'file:///opt/fediblockhole/blocklists/__allowlist.csv', format = 'csv' }, 14 | ] 15 | 16 | # List of instances to write blocklist to 17 | blocklist_instance_destinations = [ 18 | # { domain = 'eigenmagic.net', token = '', max_followed_severity = 'silence'}, 19 | ] 20 | 21 | ## Store a local copy of the remote blocklists after we fetch them 22 | save_intermediate = true 23 | 24 | ## Directory to store the local blocklist copies 25 | savedir = '/opt/fediblockhole/blocklists/' 26 | 27 | ## File to save the fully merged blocklist into 28 | blocklist_savefile = '/opt/fediblockhole/blocklists/_unified_max_blocklist.csv' 29 | 30 | ## Don't push blocklist to instances, even if they're defined above 31 | no_push_instance = true 32 | 33 | ## Don't fetch blocklists from URLs, even if they're defined above 34 | # no_fetch_url = false 35 | 36 | ## Don't fetch blocklists from instances, even if they're defined above 37 | # no_fetch_instance = false 38 | 39 | ## Set the mergeplan to use when dealing with overlaps between blocklists 40 | # The default 'max' mergeplan will use the harshest severity block found for a domain. 41 | # The 'min' mergeplan will use the lightest severity block found for a domain. 42 | mergeplan = 'max' 43 | 44 | 45 | ## Set which fields we import 46 | ## 'domain' and 'severity' are always imported, these are additional 47 | ## 48 | #import_fields = ['obfuscate'] 49 | import_fields = ['public_comment', 'obfuscate'] 50 | 51 | ## Set which fields we export 52 | ## 'domain' and 'severity' are always exported, these are additional 53 | ## 54 | export_fields = ['reject_media', 'reject_reports', 'public_comment', 'obfuscate'] 55 | 56 | 57 | -------------------------------------------------------------------------------- /config/tier0.conf.toml: -------------------------------------------------------------------------------- 1 | ## TIER0 File 2 | 3 | blocklist_instance_sources = [] 4 | 5 | # import_fields tells the parser to only import that set of fields from a specific source 6 | blocklist_url_sources = [ 7 | { url = 'file:///opt/fediblockhole/blocklists/seirdy-tier0.csv', format = 'csv' }, 8 | { url = 'file:///opt/fediblockhole/blocklists/gardenfence.csv', format = 'csv' }, 9 | { url = 'file:///opt/fediblockhole/blocklists/dni.csv', format = 'mastodon_csv' }, 10 | ] 11 | 12 | # List of instances to write blocklist to 13 | blocklist_instance_destinations = [ 14 | # { domain = 'eigenmagic.net', token = '', max_followed_severity = 'silence'}, 15 | ] 16 | 17 | allowlist_url_sources = [ 18 | { url = 'file:///opt/fediblockhole/blocklists/__allowlist.csv', format = 'csv' }, 19 | # { url = 'file:///opt/fediblockhole/blocklists/birdsite.csv', format = 'csv' }, 20 | ] 21 | 22 | ## Store a local copy of the remote blocklists after we fetch them 23 | save_intermediate = false 24 | 25 | ## Directory to store the local blocklist copies 26 | savedir = '/opt/fediblockhole/blocklists/' 27 | 28 | 29 | ## File to save the fully merged blocklist into 30 | blocklist_savefile = '/opt/fediblockhole/blocklists/_unified_tier0_blocklist.csv' 31 | 32 | ## Don't push blocklist to instances, even if they're defined above 33 | no_push_instance = true 34 | 35 | ## Don't fetch blocklists from URLs, even if they're defined above 36 | # no_fetch_url = false 37 | 38 | ## Don't fetch blocklists from instances, even if they're defined above 39 | # no_fetch_instance = false 40 | 41 | ## Set the mergeplan to use when dealing with overlaps between blocklists 42 | # The default 'max' mergeplan will use the harshest severity block found for a domain. 43 | # The 'min' mergeplan will use the lightest severity block found for a domain. 44 | mergeplan = 'max' 45 | 46 | ## Set which fields we import 47 | ## 'domain' and 'severity' are always imported, these are additional 48 | ## 49 | #import_fields = ['reject_media', 'reject_reports', 'obfuscate'] 50 | import_fields = ['public_comment', 'reject_media', 'reject_reports', 'obfuscate'] 51 | 52 | ## Set which fields we export 53 | ## 'domain' and 'severity' are always exported, these are additional 54 | ## 55 | export_fields = ['reject_media', 'reject_reports', 'public_comment', 'obfuscate'] 56 | -------------------------------------------------------------------------------- /exports/.gitignore: -------------------------------------------------------------------------------- 1 | *.csv 2 | -------------------------------------------------------------------------------- /fedisync-example-server.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | # export to production servers 4 | 5 | SYNC=`which fediblock-sync` 6 | 7 | # use secretconfig subfolder 8 | ${SYNC} -c /opt/fediblockhole/config/example-server-export.conf.toml 9 | 10 | -------------------------------------------------------------------------------- /fedisync-git.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | # generate files 4 | #exec > >(tee /opt/fediblockhole/logs/fedisync.log) 2>&1 5 | exec 2> >(tee /opt/fediblockhole/logs/fedisync-git.log) 6 | echo "Pushing up git changes..." 7 | 8 | cd /opt/fediblockhole 9 | 10 | date=$(date '+%Y-%m-%d %H:%M:%S') 11 | 12 | GIT=`which git` 13 | ${GIT} add --all 14 | ${GIT} commit -m "automated commit on $date" 15 | ${GIT} push 16 | #${GIT} pushall 17 | 18 | echo "Push complete." 19 | -------------------------------------------------------------------------------- /fedisync-push.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | # generate files 4 | exec > >(tee /opt/fediblockhole/logs/fedisync-production.log) 2>&1 5 | 6 | # push to github and codeberg 7 | # note: copy your own version to /fediblockhole/local 8 | /opt/fediblockhole/fedisync-git.sh 9 | 10 | # push to remote servers 11 | /opt/fediblockhole/fedisync-example-server.sh 12 | -------------------------------------------------------------------------------- /fedisync.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | set -e 3 | 4 | # generate files 5 | exec 2> >(tee /opt/fediblockhole/logs/fedisync.log) 6 | echo "Pulling down all blocklist sources..." 7 | 8 | curl https://connect.iftas.org/wp-content/uploads/2024/04/dni.csv > /opt/fediblockhole/blocklists/dni.csv 9 | 10 | cd /opt/fediblockhole 11 | 12 | GIT=`which git` 13 | ${GIT} fetchall 14 | 15 | PULLCONFIG="/opt/fediblockhole/config/pull.conf.toml" # default, pull sources WITHOUT public_description 16 | #PULLCONFIG="/opt/fediblockhole/config/pull.all.conf.toml" # pull down all sources WITH public_description 17 | 18 | SYNC=`which fediblock-sync` 19 | ${SYNC} -c $PULLCONFIG # pull down all files, create max list 20 | 21 | # rename and remove intermediate files 22 | # rename and remove intermediate files 23 | rm -f /opt/fediblockhole/blocklists/file:---opt-fediblockhole-blocklists-__allowlist.csv.csv 24 | mv /opt/fediblockhole/blocklists/https:--seirdy.one-pb-tier0.csv.csv /opt/fediblockhole/blocklists/seirdy-tier0.csv 25 | mv /opt/fediblockhole/blocklists/https:--raw.githubusercontent.com-gardenfence-blocklist-main-gardenfence-fediblocksync.csv.csv /opt/fediblockhole/blocklists/gardenfence.csv 26 | mv /opt/fediblockhole/blocklists/https:--mastodon.online-api-v1-instance-domain_blocks.csv /opt/fediblockhole/blocklists/mastodon.online.csv 27 | mv /opt/fediblockhole/blocklists/https:--mastodon.social-api-v1-instance-domain_blocks.csv /opt/fediblockhole/blocklists/mastodon.social.csv 28 | 29 | #pull down DNI file directly to blocklist directory 30 | 31 | #curl https://connect.iftas.org/wp-content/uploads/2024/04/dni.csv > /opt/fediblockhole/blocklists/dni.csv 32 | 33 | # destroy the 'max' list 34 | rm -f /opt/fediblockhole/blocklists/_unified_max_blocklist.csv 35 | 36 | # create unified tier0 file 37 | ${SYNC} -c /opt/fediblockhole/config/tier0.conf.toml 38 | 39 | echo "Creating mastodon versions of files..." 40 | 41 | # convert files to Mastodon header 42 | cd /opt/fediblockhole/blocklists/mastodon 43 | 44 | # copy all files to mastodon subfolder 45 | cp /opt/fediblockhole/blocklists/*.csv /opt/fediblockhole/blocklists/mastodon/ && \ 46 | cp /opt/fediblockhole/blocklists/README.md /opt/fediblockhole/blocklists/mastodon/README.md 47 | 48 | rm -f __allowlist.csv 49 | 50 | # replace first line with mastodon-format header row 51 | headerrow="#domain,#severity,#reject_media,#reject_reports,#public_comment,#obfuscate" 52 | for file in *.csv; do 53 | sed -i "1s/.*/$headerrow/" $file 54 | # replace bad line terminators 55 | sed -i "s/\r//g" $file 56 | # lowercase file to fix booleans 57 | sed -i "s/\(.*\)/\L\1/" $file 58 | done 59 | 60 | echo "Pull complete." 61 | -------------------------------------------------------------------------------- /logs/.gitignore: -------------------------------------------------------------------------------- 1 | *.log 2 | --------------------------------------------------------------------------------