-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathwhitelist.txt
More file actions
1016 lines (846 loc) · 26.1 KB
/
Copy pathwhitelist.txt
File metadata and controls
1016 lines (846 loc) · 26.1 KB
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
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
# Zach's Lists - Default Whitelist
# Last Updated: 17/08/2026 - Allowlisted thefrenchghosty.me (owner's personal site; jarelllama scam-list false positive)
# ============================================================================
# GOOGLE SERVICES
# ============================================================================
# Core Google functionality
clients.google.com
clients1.google.com
clients2.google.com
clients3.google.com
clients4.google.com
clients5.google.com
clients6.google.com
accounts.google.com
dl.google.com
cse.google.com
# YouTube
s.youtube.com
video-stats.l.google.com
www.googleapis.com
youtubei.googleapis.com
oauthaccountmanager.googleapis.com
i.ytimg.com
i1.ytimg.com
s.ytimg.com
yt3.ggpht.com
manifest.googlevideo.com
redirector.googlevideo.com
www.youtube-nocookie.com
youtube-nocookie.com
youtu.be
# Google Play Store
android.clients.google.com
play.googleapis.com
# Google Keep & Drive
reminders-pa.googleapis.com
firestore.googleapis.com
# Google Fonts
gstaticadssl.l.google.com
fonts.gstatic.com
fonts.googleapis.com
# Gmail
googleapis.l.google.com
# Android connectivity check
connectivitycheck.gstatic.com
connectivitycheck.android.com
# Android TV
redirector.gvt1.com
# Google Push Notifications (WhatsApp, etc)
mtalk.google.com
alt1-mtalk.google.com
alt2-mtalk.google.com
alt3-mtalk.google.com
alt4-mtalk.google.com
alt5-mtalk.google.com
alt6-mtalk.google.com
alt7-mtalk.google.com
alt8-mtalk.google.com
# Other Google
gstatic.com
googleapis.com
appspot-preview.l.google.com
geo3.ggpht.com
instantmessaging-pa.googleapis.com
# ============================================================================
# GOOGLE - ULTIMATE BLOCKLIST COMPATIBILITY
# ============================================================================
# Device provisioning (needed for Google/Nest devices)
device-provisioning.googleapis.com
# Google Analytics (needed for some sites to function)
# Only whitelist if specific sites break
#OPTIONAL: www.google-analytics.com
#OPTIONAL: ssl.google-analytics.com
# ============================================================================
# MICROSOFT / WINDOWS / XBOX
# ============================================================================
# Windows connectivity test
www.msftncsi.com
www.msftconnecttest.com
msftncsi.com
dns.msftncsi.com
ipv6.msftncsi.com
# Windows Update
sls.update.microsoft.com.akadns.net
fe3.delivery.dsp.mp.microsoft.com.nsatc.net
tlu.dl.delivery.mp.microsoft.com
dl.delivery.mp.microsoft.com
geo-prod.do.dsp.mp.microsoft.com
displaycatalog.mp.microsoft.com
tsfe.trafficshaping.dsp.mp.microsoft.com
ctldl.windowsupdate.com
# Microsoft Store
storeedgefd.dsx.mp.microsoft.com
# Microsoft Web Services
outlook.office365.com
products.office.com
c.s-microsoft.com
i.s-microsoft.com
login.live.com
login.microsoftonline.com
officeclient.microsoft.com
office.com
office.net
office365.com
microsoftonline.com
onedrive.live.com
outlook.live.com
g.live.com
live.com
# Microsoft Edge
msedge.api.cdp.microsoft.com
# Xbox Live Core
clientconfig.passport.net
xbox.ipv6.microsoft.com
device.auth.xboxlive.com
title.mgt.xboxlive.com
xsts.auth.xboxlive.com
title.auth.xboxlive.com
ctldl.windowsupdate.com
attestation.xboxlive.com
xboxexperiencesprod.experimentation.xboxlive.com
xflight.xboxlive.com
cert.mgt.xboxlive.com
xkms.xboxlive.com
def-vef.xboxlive.com
notify.xboxlive.com
help.ui.xboxlive.com
licensing.xboxlive.com
eds.xboxlive.com
www.xboxlive.com
# Xbox Messaging
client-s.gateway.messenger.live.com
s.gateway.messenger.live.com
# Xbox Store
arc.msn.com
# Xbox EA Play
activity.windows.com
# Windows Defender
wdcp.microsoft.com
wdcpalt.microsoft.com
# Windows Continuum
continuum.dds.microsoft.com
# Skype
apps.skype.com
pricelist.skype.com
ui.skype.com
*.skype.com
# Bing Maps
dev.virtualearth.net
ecn.dev.virtualearth.net
t0.ssl.ak.dynamic.tiles.virtualearth.net
t0.ssl.ak.tiles.virtualearth.net
# ============================================================================
# MICROSOFT - ULTIMATE BLOCKLIST COMPATIBILITY
# ============================================================================
# Windows Spotlight (lock screen images)
ris.api.iris.microsoft.com
api.msn.com
assets.msn.com
c.msn.com
ntp.msn.com
srtb.msn.com
www.msn.com
# Xbox Live Achievements & Activity History
v10.events.data.microsoft.com
v20.events.data.microsoft.com
settings-win.data.microsoft.com
# Windows Settings & KGL (Known Game List) updates
settings.data.microsoft.com
# Windows Insider
insideruser.microsoft.com
# Microsoft SSO (Single Sign-On) on Android
mobile.events.data.microsoft.com
# Azure Portal / Application Insights
dc.services.visualstudio.com
rt.services.visualstudio.com
# Office Diagnostics & Feedback
config.edge.skype.com
# Microsoft Store app downloads
assets1.xboxlive.com
assets2.xboxlive.com
dlassets.xboxlive.com
dlassets2.xboxlive.com
# ============================================================================
# APPLE
# ============================================================================
# Apple ID
appleid.apple.com
# Apple Music & iTunes
itunes.apple.com
s.mzstatic.com
# iOS Weather
gsp-ssl.ls.apple.com
gsp-ssl.ls-apple.com.akadns.net
# Apple captive portal
captive.apple.com
gsp1.apple.com
www.apple.com
www.appleiphonecell.com
# OCSP (certificate validation)
ocsp.apple.com
# App Store
ax.phobos.apple.com.edgesuite.net
# ============================================================================
# META / FACEBOOK - ULTIMATE BLOCKLIST COMPATIBILITY
# ============================================================================
# Core Facebook functionality (not tracking)
upload.facebook.com
graph.facebook.com
b-graph.facebook.com
connect.facebook.com
api.facebook.com
www.facebook.com
web.facebook.com
rupload.facebook.com
l.facebook.com
fb.me
m.facebook.com
mobile.facebook.com
touch.facebook.com
mbasic.facebook.com
# Facebook CDN (required for images/content)
fbcdn.net
*.fbcdn.net
scontent.fbcdn.net
static.fbcdn.net
video.fbcdn.net
# Facebook Messenger
edge-mqtt.facebook.com
mqtt.c10r.facebook.com
edge-chat.facebook.com
edge-chat.messenger.com
l.messenger.com
star.c10r.facebook.com
star-mini.c10r.facebook.com
b-api.facebook.com
portal.fb.com
cdn.fbsbx.com
bigzipfiles.facebook.com
messenger.com
www.messenger.com
# Instagram (if using)
i.instagram.com
instagram.com
www.instagram.com
graph.instagram.com
api.instagram.com
# WhatsApp
wa.me
www.wa.me
whatsapp.com
www.whatsapp.com
web.whatsapp.com
w1.web.whatsapp.com
w2.web.whatsapp.com
w3.web.whatsapp.com
w4.web.whatsapp.com
w5.web.whatsapp.com
w6.web.whatsapp.com
w7.web.whatsapp.com
w8.web.whatsapp.com
w9.web.whatsapp.com
pps.whatsapp.net
mmg.whatsapp.net
media.whatsapp.com
static.whatsapp.net
# WhatsApp avatars, helpcenter, video effects (blocked in Ultimate)
graph.whatsapp.com
dit.whatsapp.net
crashlogs.whatsapp.net
# Facebook/Meta Pixel & Analytics (needed for some site functionality)
# These are trackers but some sites break without them
pixel.facebook.com
an.facebook.com
ads.facebook.com
# ============================================================================
# AMAZON / AWS
# ============================================================================
amazonaws.com
s3.amazonaws.com
cloudsync-prod.s3.amazonaws.com
reddit-uploaded-media.s3-accelerate.amazonaws.com
whispersystems-textsecure-attachments.s3-accelerate.amazonaws.com
# Amazon browsing history (blocked in Ultimate)
# Uncomment if you use Amazon browsing history feature
#OPTIONAL: fls-na.amazon.com
#OPTIONAL: unagi.amazon.com
#OPTIONAL: unagi-na.amazon.com
# ============================================================================
# CDN & INFRASTRUCTURE
# ============================================================================
# Akamai
akamaihd.net
akamaitechnologies.com
akamaized.net
# Cloudflare
cdn.cloudflare.net
cdnjs.cloudflare.com
# jsDelivr
jsdelivr.net
# jQuery
jquery.com
# Cloudinary
res.cloudinary.com
# Imgix
imgix.net
placeholdit.imgix.net
# Gravatar
gravatar.com
# Fastly
reddit.map.fastly.net
# General CDNs
aspnetcdn.com
# Highwinds CDN (used by various sites)
hwcdn.net
*.hwcdn.net
# ============================================================================
# SOCIAL MEDIA
# ============================================================================
# Twitter/X
t.co
twitter.com
upload.twitter.com
api.twitter.com
mobile.twitter.com
twimg.com
*.twimg.com
x.com
api.x.com
# Reddit
styles.redditmedia.com
www.redditstatic.com
www.redditmedia.com
reddit.com
www.reddit.com
old.reddit.com
new.reddit.com
oauth.reddit.com
# Signal
ud-chat.signal.org
chat.signal.org
storage.signal.org
signal.org
www.signal.org
updates2.signal.org
textsecure-service-whispersystems.org
giphy-proxy-production.whispersystems.org
cdn.signal.org
d83eunklitikj.cloudfront.net
api.directory.signal.org
contentproxy.signal.org
turn1.whispersystems.org
souqcdn.com
cms.souqcdn.com
# Telegram (if using)
telegram.org
t.me
telegram.me
web.telegram.org
*.telegram.org
# Discord (if using)
discord.com
discordapp.com
discord.gg
cdn.discordapp.com
media.discordapp.net
images-ext-1.discordapp.net
images-ext-2.discordapp.net
gateway.discord.gg
# ============================================================================
# STREAMING & MEDIA
# ============================================================================
# Plex
plex.tv
tvdb2.plex.tv
pubsub.plex.bz
proxy.plex.bz
proxy02.pop.ord.plex.bz
cpms.spop10.ams.plex.bz
meta-db-worker02.pop.ric.plex.bz
meta.plex.bz
tvthemes.plexapp.com.cdn.cloudflare.net
tvthemes.plexapp.com
106c06cd218b007d-b1e8a1331f68446599e96a4b46a050f5.ams.plex.services
meta.plex.tv
cpms35.spop10.ams.plex.bz
proxy.plex.tv
metrics.plex.tv
pubsub.plex.tv
status.plex.tv
www.plex.tv
node.plexapp.com
nine.plugins.plexapp.com
staging.plex.tv
app.plex.tv
o1.email.plex.tv
o2.sg0.plex.tv
dashboard.plex.tv
my.plexapp.com
# Plex metadata providers
thetvdb.com
themoviedb.com
chtbl.com
# Spotify
spclient.wg.spotify.com
apresolve.spotify.com
api-tv.spotify.com
# Brightcove (video player)
brightcove.net
cdn.vidible.tv
delivery.vidible.tv
edge.api.brightcove.com
f1.media.brightcove.com
img.vidible.tv
players.brightcove.net
secure.brightcove.com
videos.vidible.tv
# TED
app-api.ted.com
hls.ted.com
tedcdn.com
# Libsyn (podcasts)
traffic.libsyn.com
# Last.fm
lastfm-img2.akamaized.net
ws.audioscrobbler.com
# NPR
npr-news.streaming.adswizz.com
# CBSI / CBS
om.cbsi.com
vidtech.cbsinteractive.com
# Giphy
giphy.com
media.giphy.com
media0.giphy.com
media1.giphy.com
media2.giphy.com
media3.giphy.com
media4.giphy.com
# Weather videos
v.w-x.co
# NCAA
live-manifests-aka.warnermediacdn.com
# Conviva (video analytics - needed for some players)
zee.cws.conviva.com
pings.conviva.com
cws.conviva.com
livepassdl.conviva.com
# Rumble
*.rmbl.ws
# Netflix (if blocked)
netflix.com
*.netflix.com
*.nflxvideo.net
# ============================================================================
# GAMING
# ============================================================================
# NVIDIA GeForce Experience
gfwsl.geforce.com
# Rockstar / GTA Online
prod.telemetry.ros.rockstargames.com
# Epic Games (required for purchases/2FA)
tracking.epicgames.com
# EA / Origin
cdn.optimizely.com
split.io
# PlayStation
telemetry-console.api.playstation.com
# Steam
steamcommunity.com
store.steampowered.com
api.steampowered.com
*.steamcontent.com
# ============================================================================
# PRODUCTIVITY & CLOUD STORAGE
# ============================================================================
# Dropbox
dl.dropbox.com
dl.dropboxusercontent.com
ns1.dropbox.com
ns2.dropbox.com
# Sonarr
services.sonarr.tv
skyhook.sonarr.tv
download.sonarr.tv
apt.sonarr.tv
forums.sonarr.tv
# GitHub
github.com
github.io
raw.githubusercontent.com
gist.github.com
api.github.com
*.githubusercontent.com
# GitLab
gitlab.com
*.gitlab.com
# Intercom (chat widgets)
intercom.io
# Drift (chat widgets)
drift.com
driftt.com
# Tawk (chat widgets)
tawk.to
# SurveyMonkey
secure.surveymonkey.com
# Embedly
cdn.embedly.com
# Placeholders (web design)
placehold.it
# Notion
notion.so
www.notion.so
api.notion.com
# ============================================================================
# DYNAMIC DNS
# ============================================================================
dynupdate.no-ip.com
no-ip.com
www.no-ip.com
dataplicity.com
www.dataplicity.com
# ============================================================================
# SECURITY & CERTIFICATES
# ============================================================================
# Symantec certificates
sa.symcb.com
*.symcb.com
# Malwarebytes
keystone.mwbsys.com
# Avangate (software licensing)
secure.avangate.com
# Mozilla Tracking Protection updates
tracking-protection.cdn.mozilla.net
# ============================================================================
# NTP (Time Sync)
# ============================================================================
2.android.pool.ntp.org
time.windows.com
time.google.com
time.apple.com
time.cloudflare.com
# ============================================================================
# VPN Services
# ============================================================================
adguard-vpn.com
# ============================================================================
# SHOPPING & RETAIL
# ============================================================================
# Target
weeklyad.target.com
m.weeklyad.target.com
weeklyad.target.com.edgesuite.net
# General retail
s.shopify.com
# GoDaddy webmail
imagesak.secureserver.net
# Marketwatch
s.marketwatch.com
# Lowe's checkout
assets.adobedtm.com
# Home Depot checkout
nexus.ensighten.com
# ============================================================================
# LINK SHORTENERS (Commonly in legitimate use)
# ============================================================================
t.ly
bit.ly
www.bit.ly
ow.ly
tinyurl.com
goo.gl
is.gd
cutt.ly
# ============================================================================
# IP LOOKUP (Needed by some apps)
# ============================================================================
api.ipify.org
ipinfo.io
ip-api.com
pro.ip-api.com
# ============================================================================
# COOKIE CONSENT / GDPR
# ============================================================================
# These are needed for cookie banners to work properly
consent.cookiebot.eu
cookiebot.com
consent.cookiebot.com
consentcdn.cookiebot.com
# OneTrust
cdn.cookielaw.org
optanon.blob.core.windows.net
geolocation.onetrust.com
# ============================================================================
# MISCELLANEOUS SERVICES
# ============================================================================
# XKCD
imgs.xkcd.com
# RLJE (streaming)
api.rlje.net
# BazaarVoice (reviews)
display.ugc.bazaarvoice.com
# RPX (social login)
widget-cdn.rpxnow.com
# JW Player
ssl.p.jwpcdn.com
# WordPress
s1.wp.com
wp.com
# 1drv / OneDrive
1drv.com
# Canon printers firmware
gdlp01.c-wss.com
# DPD tracking
tracking.dpd.de
# Wiki.js Docs
docs.requarks.io
# ============================================================================
# BANKING & FINANCE (Add your specific bank if needed)
# ============================================================================
# Monzo (transactional email links)
clicks.monzo.com
# TSB Mobile
h-sdk.online-metrix.net
check2.tsb.co.uk
# Citizen's Bank
p11.techlab-cdn.com
# OLA Money
logs.juspay.in
# ThreatMetrix (fraud prevention - many banks use this)
*.online-metrix.net
# ============================================================================
# REGIONAL - NETHERLANDS
# ============================================================================
cds.s5x3j6q5.hwcdn.net
# ============================================================================
# REGIONAL - SWEDEN
# ============================================================================
# SVT Play
analytics.svt.se
# ============================================================================
# REGIONAL - GERMANY
# ============================================================================
# O2 online (blocked in Ultimate)
static2.o9.de
*.o9.de
# ============================================================================
# FOOD & RESTAURANTS
# ============================================================================
# Burger King
appboy-images.com
rest.iad-03.braze.com
# Punchh (loyalty apps)
mobileandroidapi.punchh.com
# ============================================================================
# TV SERVICES
# ============================================================================
# DirectTV
directvnow.com
directvapplications.hb.omtrdc.net
s.zkcdn.net
js.maxmind.com
# WatchESPN
fpdownload.adobe.com
entitlement.auth.adobe.com
# Hulu streaming
ads-a-darwin.hulustream.com
ads-fa-darwin.hulustream.com
# ============================================================================
# CAPTIVE PORTAL DETECTION
# ============================================================================
# Android/Chrome
connectivitycheck.android.com
connectivitycheck.gstatic.com
# Windows/Microsoft
msftncsi.com
www.msftncsi.com
www.msftconnecttest.com
ipv6.msftncsi.com
# Apple
captive.apple.com
# Firefox
detectportal.firefox.com
# ============================================================================
# LOCATION / GEO SERVICES (blocked in Ultimate)
# ============================================================================
# MaxMind GeoIP (used by many sites for regional content)
js.maxmind.com
geoip.maxmind.com
www.maxmind.com
# IP geolocation services
ip-api.com
pro.ip-api.com
ipinfo.io
ipapi.co
freegeoip.app
api.ipgeolocation.io
# ============================================================================
# ANALYTICS THAT BREAK SITES (use sparingly)
# ============================================================================
# These are trackers, but some sites completely break without them
# Only uncomment if specific sites don't work
# Google Analytics (Jackbox.tv, some e-commerce checkouts)
#OPTIONAL: www.google-analytics.com
#OPTIONAL: ssl.google-analytics.com
#OPTIONAL: analytics.google.com
# Segment (many SaaS apps use this)
#OPTIONAL: api.segment.io
#OPTIONAL: cdn.segment.com
# Mixpanel
#OPTIONAL: api.mixpanel.com
#OPTIONAL: cdn.mxpnl.com
# Amplitude
#OPTIONAL: api.amplitude.com
#OPTIONAL: cdn.amplitude.com
# ============================================================================
# REPORTED FALSE POSITIVES
# ============================================================================
# Domains reported by users as incorrectly blocked by upstream sources.
# Each entry should reference the GitHub issue it resolves.
# Hungarian tool/hardware retailer ("Puma Tools, Csömör")
# Flagged by Hagezi TIF; verified legitimate ecommerce site. (#19, PR #20)
pumatools.hu
# Backblaze B2 download / native-API host for the us-east-005 storage cluster.
# Shared infrastructure (serves /file/<bucket>/... for all tenants), not a
# user-owned bucket; blocking it breaks B2 backups. Verified against Backblaze
# IP space and live API behaviour. Abuse buckets keep their own
# <bucket>.s3.us-east-005.backblazeb2.com hostnames and stay blocked. (#23, PR #24)
f005.backblazeb2.com
# GLS eCsomag — GLS Hungary's official parcel-sending portal.
# Flagged only by the jarelllama scam list; verified legitimate: hosted on
# GLS Hungary IP space (82.141.140.12) and GLS nameservers (ns1/ns2.gls-hungary.com),
# registered 2015. Single-source upstream false positive. (#25, PR #26)
ecsomag.hu
# ServerElite (MARAELITE Kft) — established Hungarian refurbished enterprise-server shop.
# Flagged only by the jarelllama scam list; verified legitimate: domain registered 2017,
# Microsoft 365 business email, real OpenCart storefront, and listed by FT/Statista among
# Europe's fastest-growing companies (2024). Single-source upstream false positive. (#29, PR #30)
serverelite.hu
# Commonwealth Bank of Australia — official domain of Australia's largest bank (ASX: CBA).
# Flagged only by the jarelllama scam list (||commbank.com.au^); the other ~50 "commbank*"
# entries in the feeds are genuine typosquats/phishing and stay blocked. Verified legitimate:
# WHOIS registrant is Commonwealth Bank of Australia, and it is listed on the Australian
# government finance.gov.au register. Same single-source feed that false-positived #25/#29.
# Subdomain matching also covers www/netbank. (#46, PR #47)
commbank.com.au
# Norwex — legitimate eco-friendly cleaning-products retailer (microfibre cloths, direct
# sales, est. 1994). Miscategorised by the OISD NSFW list (||norwex.com^); the site is a
# live storefront (norwex.com -> www.norwex.com, HTTP 200) with no adult content. Single-
# source NSFW false positive; whitelisting removes it from nsfw.txt and nsfw_abp.txt. (#48, PR #49)
norwex.com
# Tax Policy Associates Ltd — UK non-profit tax-policy think tank and investigative journalism
# (live site, HTTP 200, "the independent tax think tank"). Flagged only by the jarelllama scam
# list (||taxpolicy.org.uk^), which traces upstream to ScamMinder — now rating the domain 100/100,
# so the original signal no longer holds. Absent from phishing.army, Hagezi TIF/fake, curbengh and
# Spam404. Reported by the domain owner. Fourth single-source FP from this feed (cf. #25, #29, #46).
# Unrelated lookalikes such as taxpolicyapi.xyz are separate domains and stay blocked. (#50, PR #51)
taxpolicy.org.uk
# Genspark — AI search/agent platform operated by MainFunc, Inc. (Palo Alto; mainfunc.ai).
# genspark.ai + www.genspark.ai were flagged only by phishing.army (extended) — absent from
# jarelllama, Hagezi TIF/fake, curbengh, Spam404, URLhaus, Dandelion — likely collateral from
# abuse of Genspark's SEPARATE user-content domain gensparkspace.com, which is deliberately
# NOT whitelisted and stays blocked (reporter explicitly scoped it out). Subdomain matching
# covers www. Single-source upstream false positive. (#52, PR #53)
genspark.ai
# Z.ai (Zhipu AI) — chat.z.ai is the official GLM chat/agent frontend (live, HTTP 200,
# "Z.ai - Advanced AI Chatbot & Agent powered by GLM"). Flagged only by phishing.army
# (extended) — absent from jarelllama, Hagezi TIF/fake, curbengh, Spam404, URLhaus,
# Dandelion. Only z.ai host in our lists (apex not blocked). Single-source FP; second
# from phishing.army after genspark.ai (#52). (#54, PR #55)
chat.z.ai
# Ergomech Store — small-business Odoo e-commerce site selling hand-assembled split ergonomic
# mechanical keyboards. Aged domain (registered 2020, Cloudflare); reporter traced the block to
# HaGeZi TIF (||ergomech.store^) and filed an upstream FP report — it is no longer present in the
# current HaGeZi TIF feed, so it appears already delisted upstream. Not in any live feed checked
# (jarelllama, phishing.army, Hagezi TIF/fake, curbengh, Spam404, URLhaus, Dandelion). Durable
# whitelist so it stays excluded even if a cached upstream copy lingers. (#56, PR #58)
ergomech.store
# REI Co-op (Recreational Equipment, Inc.) — major US outdoor-gear retail co-op, member-owned
# since 1938. rei.com is the official storefront: aged domain (registered 1996), corporate
# brand-protection registrar (CSC Corporate Domains) and enterprise DNS (UltraDNS). Flagged only
# by the jarelllama scam list (||rei.com^) — absent from phishing.army, Hagezi TIF/fake, curbengh,
# Spam404, URLhaus, Dandelion. Fifth single-source FP from this feed (cf. #25, #29, #46, #50).
# Apex was the only rei.com host blocked; subdomain matching covers www. (#59, PR #60)
rei.com
# Whatcom County Soccer — local youth-soccer organisation in Whatcom County, WA (live WordPress
# site titled "Home of Whatcom County Soccer", HTTP 200). Aged domain (registered 1999), WA
# registrant, Google/Squarespace infra. Flagged only by HaGeZi TIF (||whatcomsoccer.com^) — absent
# from jarelllama, phishing.army, urlhaus, curbengh, Spam404 and Dandelion. Most likely a transient
# TIF listing from a past WordPress compromise (a prime injection target); the site is currently
# clean. Apex was the only host blocked. (#63, PR #65)
whatcomsoccer.com
# TheFrenchGhosty's personal website — live site (HTTP 200), aged domain (registered 2022-06-23,
# Porkbun + Gcore CDN), reported by the domain owner. Flagged only by the jarelllama scam list
# (||thefrenchghosty.me^, added 2024) — absent from phishing.army, HaGeZi TIF/fake, curbengh,
# Spam404, URLhaus and Dandelion. Owner documents the feed's indiscriminate blocking of
# newly-registered domains (cf. blocklistproject/Lists#2152). Sixth single-source FP from this
# feed (cf. #25, #29, #46, #50, #59). Apex was the only host blocked. (#66, PR #68)
thefrenchghosty.me
# ============================================================================
# REGEX PATTERNS
# ============================================================================
# Google Push Notifications (all alternates)
/^((alt)[0-9](-))?mtalk\.google\.com$/
# Reddit thumbnails
/[a-z]\.thumbs\.redditmedia\.com/
# Reddit domains
/(\.|^)redd\.it$/
/(\.|^)reddit\.com$/
# Twitter images
/(\.|^)twimg\.com$/
# WhatsApp CDN
/^whatsapp-cdn-shv-[0-9]{2}-[a-z]{3}[0-9]\.fbcdn\.net$/
/^((www|(w[0-9]\.)?web|media((-[a-z]{3}|\.[a-z]{4})[0-9]{1,2}-[0-9](\.|-)(cdn|fna))?)\.)?whatsapp\.(com|net)$/
# Facebook external content
/^external-[a-z]{3}[0-9]+-[0-9]+\.xx\.fbcdn\.net$/
/^scontent(-[a-z]{3}[0-9]+-[0-9]+)?\.xx\.fbcdn\.net$/
/^video(-[a-z]{3}[0-9]+-[0-9]+)?\.xx\.fbcdn\.net$/
# Instagram CDN
/^scontent(-[a-z]{3}[0-9]+-[0-9]+)?\.cdninstagram\.com$/
# Microsoft telemetry subdomains (specific ones needed for functionality)
/^v[0-9]+\.events\.data\.microsoft\.com$/
# AdsPower — legitimate anti-detect / multi-account browser service. Hagezi Pro lists
# its app/telemetry domains (apex + subdomains incl. sentry/logger/activity), which
# breaks the app. Covers apex + all subdomains, incl. the Russian domain adspower-ru.com.
# Does NOT match adspowertrack.digital, which stays blocked. (#33, PR #34)
/(\.|^)adspower\.com$/
/(\.|^)adspower\.net$/
/(\.|^)adspower-ru\.com$/
# ============================================================================