-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathfetch_blocks.py
613 lines (574 loc) · 26.7 KB
/
fetch_blocks.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
from reqto import get
from reqto import post
from hashlib import sha256
import sqlite3
from bs4 import BeautifulSoup
from json import dumps
from json import loads
import re
from time import time
import itertools
with open("config.json") as f:
config = loads(f.read())
headers = {
"user-agent": config["useragent"]
}
def send_bot_post(instance: str, blocks: dict):
message = instance + " has blocked the following instances:\n\n"
truncated = False
if len(blocks) > 20:
truncated = True
blocks = blocks[0 : 19]
for block in blocks:
if block["reason"] == None or block["reason"] == '':
message = message + block["blocked"] + " with unspecified reason\n"
else:
if len(block["reason"]) > 420:
block["reason"] = block["reason"][0:419] + "[…]"
message = message + block["blocked"] + ' for "' + block["reason"].replace("@", "@\u200b") + '"\n'
if truncated:
message = message + "(the list has been truncated to the first 20 entries)"
botheaders = {**headers, **{"Authorization": "Bearer " + config["bot_token"]}}
req = post(f"{config['bot_instance']}/api/v1/statuses",
data={"status":message, "visibility":config['bot_visibility'], "content_type":"text/plain"},
headers=botheaders, timeout=10).json()
return True
def get_mastodon_blocks(domain: str) -> dict:
blocks = {
"Suspended servers": [],
"Filtered media": [],
"Limited servers": [],
"Silenced servers": [],
}
translations = {
"Silenced instances": "Silenced servers",
"Suspended instances": "Suspended servers",
"Gesperrte Server": "Suspended servers",
"Gefilterte Medien": "Filtered media",
"Stummgeschaltete Server": "Silenced servers",
"停止済みのサーバー": "Suspended servers",
"メディアを拒否しているサーバー": "Filtered media",
"サイレンス済みのサーバー": "Silenced servers",
"שרתים מושעים": "Suspended servers",
"מדיה מסוננת": "Filtered media",
"שרתים מוגבלים": "Silenced servers",
"Serveurs suspendus": "Suspended servers",
"Médias filtrés": "Filtered media",
"Serveurs limités": "Silenced servers",
}
try:
doc = BeautifulSoup(
get(f"https://{domain}/about/more", headers=headers, timeout=5, allow_redirects=False).text,
"html.parser",
)
except:
return {}
for header in doc.find_all("h3"):
header_text = header.text
if header_text in translations:
header_text = translations[header_text]
if header_text in blocks:
# replaced find_next_siblings with find_all_next to account for instances that e.g. hide lists in dropdown menu
for line in header.find_all_next("table")[0].find_all("tr")[1:]:
blocks[header_text].append(
{
"domain": line.find("span").text,
"hash": line.find("span")["title"][9:],
"reason": line.find_all("td")[1].text.strip(),
}
)
return {
"reject": blocks["Suspended servers"],
"media_removal": blocks["Filtered media"],
"followers_only": blocks["Limited servers"]
+ blocks["Silenced servers"],
}
def get_friendica_blocks(domain: str) -> dict:
blocks = []
try:
doc = BeautifulSoup(
get(f"https://{domain}/friendica", headers=headers, timeout=5, allow_redirects=False).text,
"html.parser",
)
except:
return {}
blocklist = doc.find(id="about_blocklist")
for line in blocklist.find("table").find_all("tr")[1:]:
blocks.append(
{
"domain": line.find_all("td")[0].text.strip(),
"reason": line.find_all("td")[1].text.strip()
}
)
return {
"reject": blocks
}
def get_pisskey_blocks(domain: str) -> dict:
blocks = {
"suspended": [],
"blocked": []
}
try:
counter = 0
step = 99
while True:
# iterating through all "suspended" (follow-only in its terminology) instances page-by-page, since that troonware doesn't support sending them all at once
try:
if counter == 0:
doc = post(f"https://{domain}/api/federation/instances", data=dumps({"sort":"+caughtAt","host":None,"suspended":True,"limit":step}), headers=headers, timeout=5, allow_redirects=False).json()
if doc == []: raise
else:
doc = post(f"https://{domain}/api/federation/instances", data=dumps({"sort":"+caughtAt","host":None,"suspended":True,"limit":step,"offset":counter-1}), headers=headers, timeout=5, allow_redirects=False).json()
if doc == []: raise
for instance in doc:
# just in case
if instance["isSuspended"]:
blocks["suspended"].append(
{
"domain": instance["host"],
# no reason field, nothing
"reason": ""
}
)
counter = counter + step
# for now I'll assume no one in their right mind would block more than 2500 instances
# greetings to abstroonztaube
if counter > 2500:
break
except:
counter = 0
break
while True:
# same shit, different asshole ("blocked" aka full suspend)
try:
if counter == 0:
doc = post(f"https://{domain}/api/federation/instances", data=dumps({"sort":"+caughtAt","host":None,"blocked":True,"limit":step}), headers=headers, timeout=5, allow_redirects=False).json()
if doc == []: raise
else:
doc = post(f"https://{domain}/api/federation/instances", data=dumps({"sort":"+caughtAt","host":None,"blocked":True,"limit":step,"offset":counter-1}), headers=headers, timeout=5, allow_redirects=False).json()
if doc == []: raise
for instance in doc:
if instance["isBlocked"]:
blocks["blocked"].append(
{
"domain": instance["host"],
"reason": ""
}
)
counter = counter + step
if counter > 2500:
break
except:
counter = 0
break
return {
"reject": blocks["blocked"],
"followers_only": blocks["suspended"]
}
except:
return {}
def get_hash(domain: str) -> str:
return sha256(domain.encode("utf-8")).hexdigest()
def get_type(domain: str) -> str:
try:
res = get(f"https://{domain}/nodeinfo/2.1.json", headers=headers, timeout=5, allow_redirects=False)
if res.status_code == 404:
res = get(f"https://{domain}/nodeinfo/2.0", headers=headers, timeout=5, allow_redirects=False)
if res.status_code == 404:
res = get(f"https://{domain}/nodeinfo/2.0.json", headers=headers, timeout=5, allow_redirects=False)
if res.ok and "text/html" in res.headers["content-type"]:
res = get(f"https://{domain}/nodeinfo/2.1", headers=headers, timeout=5, allow_redirects=False)
if res.ok:
if res.json()["software"]["name"] in ["akkoma", "rebased"]:
return "pleroma"
elif res.json()["software"]["name"] in ["hometown", "ecko"]:
return "mastodon"
elif res.json()["software"]["name"] in ["calckey", "groundpolis", "foundkey", "cherrypick", "firefish", "iceshrimp"]:
return "misskey"
else:
return res.json()["software"]["name"]
elif res.status_code == 404:
res = get(f"https://{domain}/api/v1/instance", headers=headers, timeout=5, allow_redirects=False)
if res.ok:
return "mastodon"
except:
return None
def tidyup(domain: str) -> str:
# some retards put their blocks in variable case
domain = domain.lower()
# other retards put the port
domain = re.sub("\:\d+$", "", domain)
# bigger retards put the schema in their blocklist, sometimes even without slashes
domain = re.sub("^https?\:(\/*)", "", domain)
# and trailing slash
domain = re.sub("\/$", "", domain)
# and the @
domain = re.sub("^\@", "", domain)
# the biggest retards of them all try to block individual users
domain = re.sub("(.+)\@", "", domain)
# some retards also started putting a single asterisk without dot for subdomain blocks
if domain.count("*") <= 1 and domain.startswith("*"):
domain = re.sub("^\*", "*.", domain)
domain = re.sub("^\*\.\.", "*.", domain)
# and a dot before the domain
domain = re.sub("^\.", "", domain)
# and whitespaces in the beginning/end
domain = re.sub("^\ ", "", domain)
domain = re.sub("\ $", "", domain)
return domain
conn = sqlite3.connect("blocks.db")
c = conn.cursor()
c.execute(
"select domain, software from instances where software in ('pleroma', 'mastodon', 'friendica', 'misskey', 'gotosocial', 'lemmy')"
)
for blocker, software in c.fetchall():
blockdict = []
blocker = tidyup(blocker)
if software == "pleroma":
try:
# Blocks
federation = get(
f"https://{blocker}/nodeinfo/2.1.json", headers=headers, timeout=5, allow_redirects=False
).json()["metadata"]["federation"]
if "mrf_simple" in federation:
for block_level, blocks in (
{**federation["mrf_simple"],
**{"quarantined_instances": federation["quarantined_instances"]}}
).items():
for blocked in blocks:
blocked = tidyup(blocked)
if blocked == "":
continue
if blocked.count("*") > 1:
# -ACK!-oma also started obscuring domains without hash
c.execute(
"select domain from instances where domain like ? order by rowid limit 1", (blocked.replace("*", "_"),)
)
searchres = c.fetchone()
if searchres != None:
blocked = searchres[0]
c.execute(
"select domain from instances where domain = ?", (blocked,)
)
if c.fetchone() == None:
c.execute(
"insert into instances select ?, ?, ?",
(blocked, get_hash(blocked), get_type(blocked)),
)
timestamp = int(time())
c.execute(
"select * from blocks where blocker = ? and blocked = ? and block_level = ?",
(blocker, blocked, block_level),
)
if c.fetchone() == None:
c.execute(
"insert into blocks select ?, ?, '', ?, ?, ?",
(blocker, blocked, block_level, timestamp, timestamp),
)
if block_level == "reject":
blockdict.append(
{
"blocked": blocked,
"reason": None
})
else:
c.execute(
"update blocks set last_seen = ? where blocker = ? and blocked = ? and block_level = ?",
(timestamp, blocker, blocked, block_level)
)
conn.commit()
# Reasons
if "mrf_simple_info" in federation:
for block_level, info in (
{**federation["mrf_simple_info"],
**(federation["quarantined_instances_info"]
if "quarantined_instances_info" in federation
else {})}
).items():
for blocked, reason in info.items():
blocked = tidyup(blocked)
if blocked == "":
continue
if blocked.count("*") > 1:
# same domain guess as above, but for reasons field
c.execute(
"select domain from instances where domain like ? order by rowid limit 1", (blocked.replace("*", "_"),)
)
searchres = c.fetchone()
if searchres != None:
blocked = searchres[0]
c.execute(
"update blocks set reason = ? where blocker = ? and blocked = ? and block_level = ? and reason = ''",
(reason["reason"], blocker, blocked, block_level),
)
for entry in blockdict:
if entry["blocked"] == blocked:
entry["reason"] = reason["reason"]
conn.commit()
except Exception as e:
print("error:", e, blocker)
elif software == "mastodon":
try:
# json endpoint for newer mastodongs
try:
json = {
"reject": [],
"media_removal": [],
"followers_only": [],
"report_removal": []
}
# handling CSRF, I've saw at least one server requiring it to access the endpoint
meta = BeautifulSoup(
get(f"https://{blocker}/about", headers=headers, timeout=5, allow_redirects=False).text,
"html.parser",
)
try:
csrf = meta.find("meta", attrs={"name": "csrf-token"})["content"]
reqheaders = {**headers, **{"x-csrf-token": csrf}}
except:
reqheaders = headers
blocks = get(
f"https://{blocker}/api/v1/instance/domain_blocks", headers=reqheaders, timeout=5, allow_redirects=False
).json()
for block in blocks:
entry = {'domain': block['domain'], 'hash': block['digest'], 'reason': block['comment']}
if block['severity'] == 'suspend':
json['reject'].append(entry)
elif block['severity'] == 'silence':
json['followers_only'].append(entry)
elif block['severity'] == 'reject_media':
json['media_removal'].append(entry)
elif block['severity'] == 'reject_reports':
json['report_removal'].append(entry)
except:
json = get_mastodon_blocks(blocker)
for block_level, blocks in json.items():
for instance in blocks:
blocked, blocked_hash, reason = instance.values()
blocked = tidyup(blocked)
if blocked.count("*") <= 1 and blocked.startswith("*"):
c.execute(
"select hash from instances where hash = ?", (blocked_hash,)
)
if c.fetchone() == None:
c.execute(
"insert into instances select ?, ?, ?",
(blocked, get_hash(blocked), get_type(blocked)),
)
else:
# Doing the hash search for instance names as well to tidy up DB
c.execute(
"select domain from instances where hash = ?", (blocked_hash,)
)
searchres = c.fetchone()
if searchres != None:
blocked = searchres[0]
else:
# Apparently, some instances return incorrect hashes for whatever reason
# I've tested one of them, and those hashes correspond to the already obscured domain
# That doesn't make any sense unless someone obscured the domain themselves and put it into the blocklist, but whatever
c.execute(
"select domain from instances where domain like ? order by rowid limit 1", (blocked.replace("*", "_"),)
)
searchres = c.fetchone()
if searchres != None:
blocked = searchres[0]
timestamp = int(time())
c.execute(
"select * from blocks where blocker = ? and blocked = ? and block_level = ?",
(blocker, blocked if blocked.count("*") <= 1 else blocked_hash, block_level),
)
if c.fetchone() == None:
c.execute(
"insert into blocks select ?, ?, ?, ?, ?, ?",
(
blocker,
blocked if blocked.count("*") <= 1 else blocked_hash,
reason,
block_level,
timestamp,
timestamp,
),
)
if block_level == "reject":
blockdict.append(
{
"blocked": blocked,
"reason": reason
})
else:
c.execute(
"update blocks set last_seen = ? where blocker = ? and blocked = ? and block_level = ?",
(timestamp, blocker, blocked if blocked.count("*") <= 1 else blocked_hash, block_level),
)
if reason != '':
c.execute(
"update blocks set reason = ? where blocker = ? and blocked = ? and block_level = ? and reason = ''",
(reason, blocker, blocked if blocked.count("*") <= 1 else blocked_hash, block_level),
)
conn.commit()
except Exception as e:
print("error:", e, blocker)
elif software == "friendica" or software == "misskey":
try:
if software == "friendica":
json = get_friendica_blocks(blocker)
elif software == "misskey":
json = get_pisskey_blocks(blocker)
for block_level, blocks in json.items():
for instance in blocks:
blocked, reason = instance.values()
blocked = tidyup(blocked)
if blocked.count("*") > 0:
# Some friendica servers also obscure domains without hash
c.execute(
"select domain from instances where domain like ? order by rowid limit 1", (blocked.replace("*", "_"),)
)
searchres = c.fetchone()
if searchres != None:
blocked = searchres[0]
if blocked.count("?") > 0:
# Some obscure them with question marks, not sure if that's dependent on version or not
c.execute(
"select domain from instances where domain like ? order by rowid limit 1", (blocked.replace("?", "_"),)
)
searchres = c.fetchone()
if searchres != None:
blocked = searchres[0]
timestamp = int(time())
c.execute(
"select * from blocks where blocker = ? and blocked = ?",
(blocker, blocked),
)
if c.fetchone() == None:
c.execute(
"insert into blocks select ?, ?, ?, ?, ?, ?",
(
blocker,
blocked,
reason,
block_level,
timestamp,
timestamp
),
)
if block_level == "reject":
blockdict.append(
{
"blocked": blocked,
"reason": reason
})
else:
c.execute(
"update blocks set last_seen = ? where blocker = ? and blocked = ? and block_level = ?",
(timestamp, blocker, blocked, block_level),
)
if reason != '':
c.execute(
"update blocks set reason = ? where blocker = ? and blocked = ? and block_level = ? and reason = ''",
(reason, blocker, blocked, block_level),
)
conn.commit()
except Exception as e:
print("error:", e, blocker)
elif software == "gotosocial":
try:
# Blocks
federation = get(
f"https://{blocker}/api/v1/instance/peers?filter=suspended", headers=headers, timeout=5, allow_redirects=False
).json()
for peer in federation:
blocked = peer["domain"].lower()
if blocked.count("*") > 0:
# GTS does not have hashes for obscured domains, so we have to guess it
c.execute(
"select domain from instances where domain like ? order by rowid limit 1", (blocked.replace("*", "_"),)
)
searchres = c.fetchone()
if searchres != None:
blocked = searchres[0]
c.execute(
"select domain from instances where domain = ?", (blocked,)
)
if c.fetchone() == None:
c.execute(
"insert into instances select ?, ?, ?",
(blocked, get_hash(blocked), get_type(blocked)),
)
c.execute(
"select * from blocks where blocker = ? and blocked = ? and block_level = ?",
(blocker, blocked, "reject"),
)
timestamp = int(time())
if c.fetchone() == None:
c.execute(
"insert into blocks select ?, ?, ?, ?, ?, ?",
(blocker, blocked, "", "reject", timestamp, timestamp),
)
blockdict.append(
{
"blocked": blocked,
"reason": None
})
else:
c.execute(
"update blocks set last_seen = ? where blocker = ? and blocked = ? and block_level = ?",
(timestamp, blocker, blocked, "reject"),
)
if "public_comment" in peer:
reason = peer["public_comment"]
c.execute(
"update blocks set reason = ? where blocker = ? and blocked = ? and block_level = ? and reason = ''",
(reason, blocker, blocked, "reject"),
)
for entry in blockdict:
if entry["blocked"] == blocked:
entry["reason"] = reason
conn.commit()
except Exception as e:
print("error:", e, blocker)
elif software == "lemmy":
# looks like there's no reason field or obscured domain names yet
try:
# Blocks
federation = get(
f"https://{blocker}/api/v3/site", headers=headers, timeout=5, allow_redirects=False
).json()
blocks = federation['federated_instances']['blocked']
for blocked in blocks:
blocked = tidyup(blocked)
c.execute(
"select domain from instances where domain = ?", (blocked,)
)
if c.fetchone() == None:
c.execute(
"insert into instances select ?, ?, ?",
(blocked, get_hash(blocked), get_type(blocked)),
)
c.execute(
"select * from blocks where blocker = ? and blocked = ? and block_level = ?",
(blocker, blocked, "reject"),
)
timestamp = int(time())
if c.fetchone() == None:
c.execute(
"insert into blocks select ?, ?, ?, ?, ?, ?",
(blocker, blocked, "", "reject", timestamp, timestamp),
)
blockdict.append(
{
"blocked": blocked,
"reason": None
})
else:
c.execute(
"update blocks set last_seen = ? where blocker = ? and blocked = ? and block_level = ?",
(timestamp, blocker, blocked, "reject"),
)
conn.commit()
except Exception as e:
print("error:", e, blocker)
if config["bot_enabled"] and len(blockdict) > 0:
send_bot_post(blocker, blockdict)
blockdict = []
conn.close()