forked from hagezi/dns-blocklists
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathallow_light-ultimate.txt
executable file
·1098 lines (782 loc) · 24.6 KB
/
allow_light-ultimate.txt
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
# Unblocking for all lists (relaxed, balanced, aggressive and strict)
# Domains to be removed from the light, normal, pro, pro++ and ultimate list. Also from the fake, popupads and tif.
# https://github.com/hagezi/dns-blocklists/issues/5515
*odc.samsungapps.com.cdn.cloudflare.net
# https://github.com/hagezi/dns-blocklists/issues/5420
nlog.naver.com
# https://github.com/hagezi/dns-blocklists/issues/5382
api.nextgen.guardianapps.co.uk
# https://github.com/hagezi/dns-blocklists/issues/5350
hubblecontent.osi.office.net
cdn.hubblecontent.osi.office.net
cdn-1.hubblecontent.osi.office.net
# https://github.com/hagezi/dns-blocklists/issues/5178
*.lpsnmedia.net
# https://github.com/hagezi/dns-blocklists/issues/4945
semanticlocation-pa.googleapis.com
# https://github.com/hagezi/dns-blocklists/issues/4944
secu100.net
# Facebook, essential
facebook.com
star.c10r.facebook.com
star.fallback.c10r.facebook.com
star-mini.c10r.facebook.com
star-mini.fallback.c10r.facebook.com
# https://github.com/hagezi/dns-blocklists/issues/4935
voc.evolok.net
# https://github.com/hagezi/dns-blocklists/issues/4782
*.poltio.com
# https://github.com/hagezi/dns-blocklists/issues/4774
track.connect.travelaudience.com
# https://github.com/hagezi/dns-blocklists/issues/4737
24h.24hstatic.com
# https://github.com/hagezi/dns-blocklists/issues/4656
accountscenter.facebook.com
# https://github.com/hagezi/dns-blocklists/pull/4582
indystar.com
account.indystar.com
amp.indystar.com
archive.indystar.com
atoms.indystar.com
blogs.indystar.com
checkout.indystar.com
cm.indystar.com
connect.indystar.com
data.indystar.com
databases.indystar.com
elections16.indystar.com
eu.indystar.com
foodandwine.indystar.com
gdn.indystar.com
help.indystar.com
hiring.indystar.com
ininotes.indystar.com
ininotesb.indystar.com
m.indystar.com
newsfromyou.indystar.com
photos.indystar.com
profile-stage.indystar.com
profile.indystar.com
rssfeeds.indystar.com
sp.indystar.com
stage.indystar.com
static.indystar.com
subscribe.indystar.com
support.indystar.com
topics.indystar.com
user.indystar.com
uw-media.indystar.com
ux.indystar.com
www.indystar.com
www2.indystar.com
# https://github.com/hagezi/dns-blocklists/issues/4537
forcesafesearch.google.com
# https://github.com/hagezi/dns-blocklists/issues/4447
*.dnsseed.emzy.de
*.seed.bitcoin.sipa.be
*.seed.bitcoin.sprovoost.nl
*.seed.bitcoin.wiz.biz
*.seed.bitcoinstats.com
*.seed.btc.petertodd.org
x5.dnsseed.bluematt.me
x5.dnsseed.emzy.de
x5.seed.bitcoin.sipa.be
x5.seed.bitcoin.sprovoost.nl
x5.seed.bitcoin.wiz.biz
x5.seed.bitcoinstats.com
x5.seed.btc.petertodd.org
# https://github.com/hagezi/dns-blocklists/issues/4439
cdn.sift.com
api3.siftscience.com
# https://github.com/hagezi/dns-blocklists/issues/4437
cdn46501877.ahacdn.me
# GetApps (Xiaomi market): not possible to revoke consent (CMP/privacy policy)
*.privacy.api.intl.miui.com
# https://github.com/AdguardTeam/AdguardFilters/issues/193337
reports.proton.me
# https://github.com/hagezi/dns-blocklists/issues/4370
ifota.realmemobile.com
# https://github.com/hagezi/dns-blocklists/issues/4367
report-uri.com
# https://github.com/Hagez/dns-blocklists/issues/4353
qrcc.me
# https://github.com/hagezi/dns-blocklists/issues/4354
static.landbot.io
# https://github.com/hagezi/dns-blocklists/issues/4355
*.affiliate.logitravel.com
ssl.affiliate.logitravel.com
# https://github.com/hagezi/dns-blocklists/issues/4289
uhf.microsoft.com
# https://github.com/hagezi/dns-blocklists/issues/2855#issuecomment-2466520535
autolinkmaker.itunes.apple.com
geo.itunes.apple.com
linkmaker.itunes.apple.com.edgekey.net
# https://github.com/hagezi/dns-blocklists/issues/4178
adssettings.google.com
# https://github.com/hagezi/dns-blocklists/issues/4151
hiboard-drcn.ai.dbankcloud.cn
# https://github.com/hagezi/dns-blocklists/issues/3825#issuecomment-2424691633
geomobileservices-pa.googleapis.com
# Videos on various sites, e.g. 20min.ch
tdn.da-services.ch
# https://github.com/hagezi/dns-blocklists/issues/4020
*.dxp.optimizely.com
# Heymelody app updates on Oppo
iot-earbuds-us.allawnos.com
# https://github.com/hagezi/dns-blocklists/issues/2900#issuecomment-2319169147
optimizationguide-pa.googleapis.com
# https://github.com/hagezi/dns-blocklists/issues/3993
kinesis.*.amazonaws.com
# https://github.com/hagezi/dns-blocklists/issues/3991
805ba.v.fwmrm.net
# https://github.com/hagezi/dns-blocklists/issues/3977
7caa2.v.fwmrm.net
d1gw63jeifbb1b.cloudfront.net
# https://github.com/hagezi/dns-blocklists/issues/3958
mtv.video-tracking.a2d.tv
# Xiaomi newsfeed
*.newsfeed.api.intl.miui.com
*.api.newsfeed.intl.miui.com
# Xiaomi games widget
*.h5.app.intl.miui.com
# Images in mails, unsubscribe from newsletters, referral
custobar.com
m-*.custobar.com
# Genie AI app
api.adapty.io
api.onesignal.com
# Xiaomi App Vault uses it to display the widget's center
*.t14.market.xiaomi.com
# Xiaomi app "Widget Feed"
*.brs.api.intl.miui.com
# https://github.com/hagezi/dns-blocklists/issues/3620
uobsoe.com
benelph.de
# https://github.com/hagezi/dns-blocklists/issues/3576
hubspotlinks.com
# https://github.com/hagezi/dns-blocklists/issues/3330
signal-collector.gemaltodigitalbankingidcloud.com
# https://github.com/hagezi/dns-blocklists/issues/3415
d1mj578wat5n4o.cloudfront.net
# https://github.com/hagezi/dns-blocklists/issues/3414
wallet-api.urbanairship.com
# https://github.com/hagezi/dns-blocklists/issues/3386
tencent-cloud.cn
# https://github.com/hagezi/dns-blocklists/issues/3384
analytics.patcher.elderscrollsonline.com
# https://github.com/hagezi/dns-blocklists/issues/3375
js.intercomcdn.com
# https://github.com/hagezi/dns-blocklists/issues/3372
bilweb.se
# https://github.com/hagezi/dns-blocklists/issues/3367
zachej.sk
# https://github.com/hagezi/dns-blocklists/issues/3333
# Twitch App: causes increased stream buffering, tested on iOS/tvOS
# Channel points are sometimes not awarded
spade*.twitch.tv
# https://github.com/hagezi/dns-blocklists/issues/3332
host.fsastore.com
fsastore.adspeed.net
# https://github.com/hagezi/dns-blocklists/issues/3328
api-*.outgrow.co
api-n.outgrow.co
api-live.outgrow.co
api-h.outgrow.co
# https://github.com/hagezi/dns-blocklists/issues/3326
exp.notion.so
# https://github.com/hagezi/dns-blocklists/issues/3313
1gb.ru
# https://github.com/hagezi/dns-blocklists/issues/3297
docs.erpnext.com
# https://github.com/hagezi/dns-blocklists/issues/3295
shibboleth.highwire.org
openathens-sp.highwire.org
# https://github.com/hagezi/dns-blocklists/issues/3294
cdn.gladly.com
# https://github.com/hagezi/dns-blocklists/issues/3292
assets.tidiochat.com
avatars.tidiochat.com
tidiochat.com
widget-v3.tidiochat.com
widget-v4.tidiochat.com
wix.tidiochat.com
# https://github.com/hagezi/dns-blocklists/issues/3287
down-spe-sg.img.susercontent.com
staticcache.gslb.sgw.shopeemobile.com
# https://github.com/hagezi/dns-blocklists/issues/3272
web.diagnostic.networking.aws.dev
# https://github.com/hagezi/dns-blocklists/issues/3263
tracking.services.mozilla.com
# https://github.com/hagezi/dns-blocklists/issues/3249
tabooporn.tv
# https://github.com/hagezi/dns-blocklists/issues/3250
faphouse.com
# https://github.com/hagezi/dns-blocklists/issues/3248
syndication.twimg.com
cdn.syndication.twimg.com
# https://github.com/hagezi/dns-blocklists/issues/3237
awitatpapuri.com
# https://github.com/hagezi/dns-blocklists/issues/3231
twisto.cz
# https://github.com/hagezi/dns-blocklists/issues/3229
topcashback.co.uk
# https://github.com/hagezi/dns-blocklists/issues/3228
img-resize-cdn-prod.samsungnyc.com
# https://github.com/hagezi/dns-blocklists/issues/3225
subscriptions.costco.com
# https://github.com/hagezi/dns-blocklists/issues/3224
shop.espruino.com
# https://github.com/hagezi/dns-blocklists/issues/3226
cdn-widgetsrepository.yotpo.com
# https://github.com/hagezi/dns-blocklists/issues/3188
twitchytides.io
# https://github.com/hagezi/dns-blocklists/issues/3186
pinamar.gob.ar
# https://github.com/hagezi/dns-blocklists/issues/3177
vsco-prod.web.app
firebase-auth.vsco.co
# https://github.com/hagezi/dns-blocklists/issues/3176
cdn.viqeo.tv
# https://github.com/hagezi/dns-blocklists/issues/3146
tl.foxnews.com
# Download PDFs from SmallPDF
pluto.smallpdf.com
# https://github.com/hagezi/dns-blocklists/issues/3118
tracking.emons.de
# Referral
secure.traqkarr.com
# https://github.com/hagezi/dns-blocklists/issues/3102
c.tadst.com
# https://github.com/hagezi/dns-blocklists/issues/3091
vxxx.com
# https://github.com/hagezi/dns-blocklists/issues/3082
service.cz.nl
zakelijk.cz.nl
www.service.cz.nl
www.zakelijk.cz.nl
# https://github.com/hagezi/dns-blocklists/issues/3077
cdn.awsde0-fusion.fds.api.mi-img.com
# https://github.com/hagezi/dns-blocklists/issues/3069
*.kik-live.com
# https://github.com/hagezi/dns-blocklists/issues/3064
cdn.glitch.global
# https://github.com/hagezi/dns-blocklists/issues/3055
decision.flagship.io
# https://github.com/hagezi/dns-blocklists/issues/3048
t.xfin.me
# https://github.com/hagezi/dns-blocklists/issues/3046
tracker.gamesdonequick.com
# https://github.com/hagezi/dns-blocklists/issues/3033
counter.yadro.ru
# https://github.com/hagezi/dns-blocklists/issues/3016
biocatch.com
we-stats.com
# https://github.com/hagezi/dns-blocklists/issues/3011
beatleader.xyz
# https://github.com/hagezi/dns-blocklists/issues/3009
ab.chatgpt.com
# https://github.com/hagezi/dns-blocklists/issues/2995
cluster.versacommerce.de
# https://github.com/hagezi/dns-blocklists/issues/2993
subscriptions.seekingalpha.com
# https://github.com/hagezi/dns-blocklists/issues/2991
asnwish.com
# https://github.com/hagezi/dns-blocklists/issues/2988
pimpandhost.com
# https://github.com/hagezi/dns-blocklists/issues/2900
chromesyncentities-pa.googleapis.com
content-autofill.googleapis.com
nearbysharing-pa.googleapis.com
quake-pa.googleapis.com
remoteprovisioning.googleapis.com
deviceintegritytokens-pa.googleapis.com
# https://github.com/hagezi/dns-blocklists/issues/2973
inv.tux.pizza
# https://github.com/hagezi/dns-blocklists/issues/2959
swadleys.com
txxx.com
# Needed for Destiny 2 3rd party app BrayTech
b.vlsp.network
# https://support.mozilla.org/en-US/kb/canary-domain-use-application-dnsnet
use-application-dns.net
# https://github.com/hagezi/dns-blocklists/issues/2919
*.getadjacent.com
# https://github.com/hagezi/dns-blocklists/issues/2915
waaw.to
# https://github.com/hagezi/dns-blocklists/issues/2913
banner.wintrustdigitalbanking.com
# https://github.com/hagezi/dns-blocklists/issues/2912
appdump.nie.easebar.com
who.nie.easebar.com
# https://github.com/hagezi/dns-blocklists/issues/2904
agirls.aotter.net
# https://github.com/hagezi/dns-blocklists/issues/2898
zondacrypto.com
# https://github.com/hagezi/dns-blocklists/issues/2867#issuecomment-2161327885
speed.diagnostic.networking.aws.dev
# https://github.com/hagezi/dns-blocklists/issues/2894
qm.redbull.com
# Breaks private DNS on Android - no „tracking“
*.metric.gstatic.com
# https://github.com/hagezi/dns-blocklists/issues/2887
sundaysky.com
# https://github.com/hagezi/dns-blocklists/issues/2886
sellpass.io
# https://github.com/hagezi/dns-blocklists/issues/2885
no.run.place
# https://github.com/hagezi/dns-blocklists/issues/2878
digiseller.ru
# https://github.com/hagezi/dns-blocklists/issues/2869
stackla.com
# Status page for Cisco Avaamo call center
status.avaamo.com
# Guides in the game Mlbb
api.gms.moontontech.com
# https://github.com/hagezi/dns-blocklists/issues/2857
autohotkey.com
# https://github.com/hagezi/dns-blocklists/issues/2856
papy.co.jp
# https://github.com/hagezi/dns-blocklists/issues/2852
telemetry.api.2kcoretech.online
# https://github.com/hagezi/dns-blocklists/issues/2836
play-*-*.livetech.shopee.*
# https://github.com/hagezi/dns-blocklists/issues/2833
*.dontkillmyapp.com
# https://github.com/hagezi/dns-blocklists/issues/2820
beacons.ai
# https://github.com/hagezi/dns-blocklists/issues/2821
tracking.carrierlogistics.com
# https://github.com/hagezi/dns-blocklists/issues/2813
ipmcdn.avast.com
# https://github.com/hagezi/dns-blocklists/issues/2811
ephemeralcounters.api.roblox.com
# https://github.com/hagezi/dns-blocklists/issues/2806
track.cvs.com
# https://github.com/hagezi/dns-blocklists/issues/2805
secure.everyaction.com
# https://github.com/hagezi/dns-blocklists/issues/2804
fingerprint.pb.ua
# https://github.com/hagezi/dns-blocklists/issues/2797
c0ak.rbxcdn.com
# https://github.com/hagezi/dns-blocklists/issues/2812#issuecomment-2140946043
c0aws.rbxcdn.com
c0cfly.rbxcdn.com
# https://github.com/hagezi/dns-blocklists/issues/2793
*.msrareservices.com
# IP address identification endpoints
*.seeip.org
*.jsonip.com
# https://github.com/hagezi/dns-blocklists/issues/2774
clarity.*.moventus.com
# https://github.com/hagezi/dns-blocklists/issues/2768
tracking.icims.com
# https://github.com/hagezi/dns-blocklists/issues/2765
resultify.com
resultify.se
blog.resultify.se
# https://github.com/hagezi/dns-blocklists/issues/2767
device.memfault.com
ota-cdn.memfault.com
# https://github.com/hagezi/dns-blocklists/issues/2762
widgets.pinterest.com
# https://github.com/hagezi/dns-blocklists/issues/2753
log-netgame.dmm.com
# https://github.com/hagezi/dns-blocklists/issues/2748
addy.io
# https://github.com/hagezi/dns-blocklists/issues/2747
set.page
# https://github.com/hagezi/dns-blocklists/issues/2739
p.bokecc.com
# Looney Tunes mobile game
raven-pepe.aprod.scopely.io
fenrir-resolver-default.aprod.scopely.io
# https://github.com/hagezi/dns-blocklists/issues/2711
cdn.smart-traffik.com
v2.smart-traffik.com
# https://github.com/hagezi/dns-blocklists/issues/2706
goproxy.bj.bcebos.com
# https://github.com/hagezi/dns-blocklists/issues/2692
mcfwi.patronpoint.com
# https://github.com/hagezi/dns-blocklists/issues/2689
michaelapplysome.com
# https://github.com/hagezi/dns-blocklists/issues/2688
*.cmp.inmobi.com
# https://github.com/hagezi/dns-blocklists/issues/2687
chatbase.co
# https://github.com/hagezi/dns-blocklists/issues/2685
mymobility.vialto.com
myid.vialto.com
# https://github.com/hagezi/dns-blocklists/issues/2672
cdn*.avada.io
sizechart.apps.avada.io
# https://github.com/hagezi/dns-blocklists/issues/2663
shipmenttracking.costco.com
# https://github.com/hagezi/dns-blocklists/issues/2651
openinstall.io
e.kuaishou.com
# https://github.com/hagezi/dns-blocklists/issues/2641
booktoki337.com
booktoki336.com
manatoki336.net
# Blog
xiaomitime.com
# https://github.com/hagezi/dns-blocklists/issues/2633
foxypool.io
# https://github.com/hagezi/dns-blocklists/issues/2626
adscendmedia.com
rewardtk.com
# Personalise button on https://craftbrothers.net/products/fotogravur-schlusselanhanger-fur-immer-an-deiner-seite
cdn-zeptoapps.com
# Breaks Betclic
mpsnare.iesnare.com
# Get email and sms verification codes
cloudauth-device.aliyuncs.com
# Parcel tracking
tracking.handyhuellen.de
# https://github.com/hagezi/dns-blocklists/issues/2608
*.delivery.consentmanager.net
# https://github.com/hagezi/dns-blocklists/issues/2606
igg-games.com
# https://github.com/hagezi/dns-blocklists/issues/2604
mmm.page
# Breaks Hayday
event-assets.haydaygame.com
# H&M's visual search
search.visenze.com
# https://github.com/hagezi/dns-blocklists/issues/2580
connect.rom.miui.com
# Tracker for showing the status of Archive Teams Warrior projects
tracker.archiveteam.org
# BSH time synchronisation
# https://github.com/hagezi/dns-blocklists/issues/1618#issuecomment-2085567064
t.homeconnecthca.com
# Internet provider
*.planet.net
# https://github.com/hagezi/dns-blocklists/issues/2577
app.mailjet.com
# https://github.com/hagezi/dns-blocklists/issues/2576
backstory.ebay.*
# CNAME for insights.infoblox.com and more
*.lookbookhq.com
# Online book store
lastoriamilitare.com
# https://github.com/hagezi/dns-blocklists/issues/2562
cdn.wolf-327b.com
# https://github.com/hagezi/dns-blocklists/issues/2563
rockmods.net
# https://github.com/hagezi/dns-blocklists/issues/2559
yts.mx
# https://github.com/hagezi/dns-blocklists/issues/2560
track.passportshipping.com
# https://github.com/hagezi/dns-blocklists/issues/2561
filecr.com
# https://github.com/hagezi/dns-blocklists/issues/2552
tidio.com
# https://github.com/hagezi/dns-blocklists/issues/2551
tubestatic.usco1621-b.com
# Unsubscribe
api.webengage.com
# https://github.com/hagezi/dns-blocklists/issues/2535
track.cubyn.com
# https://github.com/hagezi/dns-blocklists/issues/2532
search.nosto.com
# Feedback
response.questback.com
# https://github.com/hagezi/dns-blocklists/issues/2529
edge.xero.com
# https://github.com/hagezi/dns-blocklists/issues/2527
sm.pcmag.com
# https://github.com/hagezi/dns-blocklists/issues/2524
lma.npaw.com
interceptor.npaw.com
# Entech Remote Tools
entechremote.com
# https://github.com/hagezi/dns-blocklists/issues/2519
analyze.neiki.dev
# Project makeover game files download
abstatic.pmosvc.io
# https://github.com/hagezi/dns-blocklists/issues/2516
feed.nobaraproject.org
custom.getbeamer.com
# Adblock-Detection/CMP on seznam.cz, mapy.cz and novinky.cz
h.seznam.cz
# https://github.com/hagezi/dns-blocklists/issues/2513
fast.appcues.com
# https://github.com/hagezi/dns-blocklists/issues/2511
a2zapk.com
# Video download links ssyoutube.one
genyoutube.online
# Grafana Docs
docs.grafana.org
# Register IDM
registeridm.com
# Xiaomi Theme store
thm.market.intl.xiaomi.com
api.zhuti.intl.xiaomi.com
# https://github.com/hagezi/dns-blocklists/issues/2499
d335luupugsy2.cloudfront.net
# https://github.com/hagezi/dns-blocklists/issues/2502
ambientsleepingpill.com
# Reset password in MLBB game
sctrack.sendcloud.net
# https://github.com/hagezi/dns-blocklists/issues/2486
tracker.raspberrypi.org
# https://github.com/hagezi/dns-blocklists/issues/2485
tracker.superbits.org
# https://github.com/hagezi/dns-blocklists/issues/2483
pissmail.com
# https://github.com/hagezi/dns-blocklists/issues/2480
ymstat.com
# https://github.com/hagezi/dns-blocklists/issues/2476
best.aliexpress.com
# https://github.com/hagezi/dns-blocklists/issues/2471
browser.lol
# https://github.com/hagezi/dns-blocklists/issues/2469
*.chnu.edu.ua
cream-dream.com.ua
# Medical site
sprosivracha.com
# https://github.com/hagezi/dns-blocklists/issues/2465
hazardwatch.gov.au
# Fix offline toilet seat - https://github.com/hagezi/dns-blocklists/issues/2437#issuecomment-2037817295
*.io.mi.com
# https://github.com/easylist/easylist/issues/18542
medlemskap.fagforbundet.no
# https://github.com/hagezi/dns-blocklists/issues/2451
aafp.org
# https://github.com/hagezi/dns-blocklists/issues/2448
policy.app.cookieinformation.com
app.cookieinformation.com
# Real-time Geolocation & Reverse IP Lookup REST API
api.ipapi.com
# Maps in China apps
restapi.amap.com
# FP/not malicious
cert.home4four.com
media.mc-svc-d.it
# NSFW
abgay.org
# Weather extension
badge.weatherextension.com
# https://github.com/hagezi/dns-blocklists/issues/2418
greenlight.guru
# https://github.com/hagezi/dns-blocklists/issues/2415
ohay.tv
# Images in Mails - ecm1._domainkey.volkswagen-partner.de
*.g.shortest-route.com
# Verification doesn't work in Chinese Version of Douyin (Tiktok)
vcs.snssdk.com
verify.snssdk.com
# https://github.com/hagezi/dns-blocklists/issues/2408
virgocx.ca
# https://github.com/hagezi/dns-blocklists/issues/2407
ransomware.live
# Insurance
mutua.es
# Network devices
ruijie.com
# https://github.com/hagezi/dns-blocklists/issues/2388
ro.blox.com
# https://github.com/hagezi/dns-blocklists/issues/2385
imgs.elainemedia.net
# Recover deleted instagram account via sms
ig.me
# https://github.com/hagezi/dns-blocklists/issues/2384
1passwordservices.com
# https://github.com/hagezi/dns-blocklists/issues/2382
advgo.net
# https://github.com/hagezi/dns-blocklists/issues/2379
hqbang.com
# https://github.com/hagezi/dns-blocklists/issues/2378
api-gtm.grubhub.com
# Association of energy retailers and traders
assoperatori.it
# https://github.com/hagezi/dns-blocklists/issues/2376
dailycamera.com
# https://github.com/hagezi/dns-blocklists/issues/2310
*.ramses.nu
# Breaks apkpure
winudf.com
# https://github.com/hagezi/dns-blocklists/issues/2371
interactivebrokers.com.au
# Crypto mining pool
coinminerz.com
# Padovanews
padovanews.it
# https://github.com/hagezi/dns-blocklists/issues/2368
jarvis.testbook.com
# Payment site
*.services.zam.com
# https://github.com/hagezi/dns-blocklists/issues/2367
joxi.net
# Node used by electrum bitcoin wallet
electrum.hsmiths.com
# Lidl App/Mails
image.mail.lidlplus.de
# https://github.com/hagezi/dns-blocklists/issues/2358
intercom-clicks.com
# Unsubscribe from emails
track.spe.zyngamail.com
ampsp.webengage.co
# Partially breaks mail.ru
trk.mail.ru
# https://github.com/hagezi/dns-blocklists/issues/2355
account-api.playpiknik.com
# Homeassistant Bring integration
api.getbring.com
# https://github.com/hagezi/dns-blocklists/issues/2347
mx1.1984.is
mx2.1984.is
ns1.1984.is
ns2.1984.is
ns1.1984hosting.com
ns2.1984hosting.com
# SpreadShop
myspreadshop.nl
# https://github.com/hagezi/dns-blocklists/issues/2337
api.thecut.co
# https://github.com/hagezi/dns-blocklists/issues/2336
api.mumuglobal.com
store-api.mumuglobal.com
# https://github.com/hagezi/dns-blocklists/issues/2332
androeed.ae
androeed.cn
androeed.de
androeed.es
androeed.ru
androeed.store
# https://github.com/hagezi/dns-blocklists/issues/2330
cf.aliyun.com
# https://github.com/hagezi/dns-blocklists/issues/2325
lookmovie2.to
# Password reset
ponf.linkedin.com
# Disney Magic Kingdom
a314.gameloft.com
201205igp.gameloft.com
# https://github.com/hagezi/dns-blocklists/issues/2316
vsfind.aps.contentstore.onmobile.com
# https://github.com/hagezi/dns-blocklists/issues/2315
mkt%.com
# https://github.com/hagezi/dns-blocklists/issues/2314
cmp.setupcmp.com
# https://github.com/hagezi/dns-blocklists/issues/2312
*.userlike.com
# https://mcr.microsoft.com
*.mscr.io
# https://github.com/hagezi/dns-blocklists/issues/2311
starwank.com
# https://github.com/hagezi/dns-blocklists/issues/2308
429men.com
# https://github.com/hagezi/dns-blocklists/issues/2298
launchgiftcards.com
# https://github.com/hagezi/dns-blocklists/issues/2297
xyoss.g.com.cn
# Breaks Itau banking app
itauunibanco2.us-4.evergage.com
# Not malicious
exposave.com
# https://github.com/hagezi/dns-blocklists/issues/2292
lp.constantcontactpages.com
# https://github.com/hagezi/dns-blocklists/issues/2289
track.roadie.com
# https://github.com/hagezi/dns-blocklists/issues/2287
*.api.nj.partypoker.com
*-api.nj.partypoker.com
# Legit
antiwar.com
# Breaks picnic.nl
bestelling.picnic.nl
picnic.slgnt.eu
picnic.slgnt.eu.cdn.cloudflare.net
# CBS news videos
saa.cbsi.com
# https://github.com/hagezi/dns-blocklists/issues/2282
code.metalocator.com
# https://github.com/hagezi/dns-blocklists/issues/2281
trk.bc.flxprogram.com
# Bank push notifications
pushmarketing.sberbank-tele.com
# https://github.com/hagezi/dns-blocklists/issues/2279
10duke.com
# https://github.com/hagezi/dns-blocklists/issues/2280
hs-sites.com
# Picsart AI features
optifyr.com
# https://github.com/hagezi/dns-blocklists/issues/2276
pcmatic.com
# https://github.com/hagezi/dns-blocklists/issues/2275
parentalcontrol.eset.com