forked from nextdns/metadata
-
Notifications
You must be signed in to change notification settings - Fork 0
/
lists.json
1059 lines (1059 loc) · 50.3 KB
/
lists.json
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
[
{
"id": "steven-black",
"name": "Steven Black",
"website": "https://github.com/StevenBlack/hosts",
"description": "Extending and consolidating hosts files from several well-curated sources like adaway.org, mvps.org, malwaredomainlist.com, someonewhocares.org, and potentially others.",
"categories": ["ads", "privacy", "security"],
"url": "https://raw.githubusercontent.com/StevenBlack/hosts/master/hosts"
},
{
"id": "nextdns-cname-cloaking-blocklist",
"name": "NextDNS CNAME Cloaking Blocklist",
"website": "https://github.com/nextdns/cname-cloaking-blocklist",
"description": "Automatically blocks all domains using the new CNAME Cloaking method to disguise third-party trackers as first-party trackers.",
"categories": ["privacy", "security"],
"url": "https://raw.githubusercontent.com/nextdns/cname-cloaking-blocklist/master/domains"
},
{
"id": "peter-lowe",
"name": "Peter Lowe",
"website": "https://pgl.yoyo.org/adservers",
"description": "Blocklist for use with hosts files to block ads.",
"categories": ["ads", "privacy"],
"url": "https://pgl.yoyo.org/as/serverlist.php?hostformat=hosts&mimetype=plaintext"
},
{
"id": "antisocial-blacklist",
"name": "AntiSocial Blacklist",
"website": "https://theantisocialengineer.com/blacklist",
"description": "AntiSocial Blacklist is an extensive collection of potentially malicious domains. We work hard scouring the internet looking for servers that are trying to impersonate common brands and the companies you do business with. Using our data, we then use our cloud platform to protect vulnerable computer users. You may not spot the IDN characters in iCłoud.com or the zero in Micr0Soft.com - But AntiSocial Blacklist will.",
"categories": ["security"],
"url": "https://theantisocialengineer.com/AntiSocial_Blacklist_Community_V1.txt"
},
{
"id": "minimal-hosts",
"name": "Minimal Hosts",
"website": "https://twitter.com/minimalhosts",
"categories": ["ads", "privacy"],
"url": "https://reddestdream.github.io/Projects/MinimalHosts/etc/MinimalHostsBlocker/minimalhosts"
},
{
"id": "kadhosts",
"name": "KADhosts",
"website": "https://kadantiscam.netlify.com",
"description": "Polish filter for blocking scam websites.",
"categories": ["security"],
"countries": ["PL"],
"url": "https://raw.githubusercontent.com/PolishFiltersTeam/KADhosts/master/KADhosts.txt"
},
{
"id": "certyficateit",
"name": "CertyficateIT",
"website": "https://github.com/MajkiIT/polish-ads-filter",
"description": "Polish ads filter.",
"categories": ["ads"],
"countries": ["PL"],
"url": "https://raw.githubusercontent.com/MajkiIT/polish-ads-filter/master/polish-pihole-filters/hostfile.txt"
},
{
"id": "anudeep-blacklist",
"name": "Anudeep's Blacklist",
"website": "https://github.com/anudeepND/blacklist",
"description": "A list of adserving and tracking sites maintained by me. This list will be updated frequently.",
"categories": ["ads", "privacy"],
"url": "https://raw.githubusercontent.com/anudeepND/blacklist/master/adservers.txt"
},
{
"id": "anudeep-blacklist-coinminer",
"name": "Anudeep's Blacklist (CoinMiner)",
"website": "https://github.com/anudeepND/blacklist",
"description": "Block cryptojacking sites.",
"categories": ["cryptomining"],
"url": "https://raw.githubusercontent.com/anudeepND/blacklist/master/CoinMiner.txt"
},
{
"id": "notracking-domains",
"name": "notracking (domains)",
"website": "https://github.com/notracking/hosts-blocklists",
"description": "Blocks ads, fake sites, shock sites, malware hosts and trackers. Removed verified false calls and added a large set of custom entries. This hostfiles aim is not to break any useful websites.",
"categories": ["ads", "security", "privacy"],
"url": "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/domains.txt"
},
{
"id": "notracking-hostnames",
"name": "notracking (hostnames)",
"website": "https://github.com/notracking/hosts-blocklists",
"description": "Blocks ads, fake sites, shock sites, malware hosts and trackers. Removed verified false calls and added a large set of custom entries. This hostfiles aim is not to break any useful websites.",
"categories": ["ads", "security", "privacy"],
"url": "https://raw.githubusercontent.com/notracking/hosts-blocklists/master/hostnames.txt"
},
{
"id": "easylist",
"name": "EasyList",
"website": "https://easylist.to",
"description": "EasyList is the primary filter list that removes most adverts from international webpages, including unwanted frames, images and objects. It is the most popular list used by many ad blockers and forms the basis of over a dozen combination and supplementary filter lists.",
"categories": ["ads"],
"url": "https://easylist.to/easylist/easylist.txt"
},
{
"id": "easylist-germany",
"name": "EasyList Germany",
"website": "https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",
"description": "EasyList Germany is a filter list written by the EasyList authors MonztA, Famlam and Khrin that specifically removes adverts on German language websites.",
"categories": ["ads"],
"url": "https://easylist.to/easylistgermany/easylistgermany.txt"
},
{
"id": "easylist-italy",
"name": "EasyList Italy",
"website": "https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",
"description": "EasyList Italy is a filter list written by the EasyList author Khrin that specifically removes adverts on Italian language websites.",
"categories": ["ads"],
"url": "https://easylist-downloads.adblockplus.org/easylistitaly.txt"
},
{
"id": "easylist-dutch",
"name": "EasyList Dutch",
"website": "https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",
"description": "EasyList Dutch is an affiliated filter list written by the EasyList author Famlam that specifically removes adverts on Dutch language websites.",
"categories": ["ads"],
"url": "https://easylist-downloads.adblockplus.org/easylistdutch.txt"
},
{
"id": "liste-fr",
"name": "Liste FR",
"website": "https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",
"description": "Liste FR is an affiliated filter list written by Lian, Crits and smed79 that specifically removes adverts on French language websites.",
"categories": ["ads"],
"url": "https://easylist-downloads.adblockplus.org/liste_fr.txt"
},
{
"id": "easylist-china",
"name": "EasyList China",
"website": "https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",
"description": "EasyList China is an affiliated filter list written by John and Li that specifically removes adverts on Chinese language websites.",
"categories": ["ads"],
"url": "https://easylist-downloads.adblockplus.org/easylistchina.txt"
},
{
"id": "bulgarian-list",
"name": "Bulgarian list",
"website": "https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",
"description": "Bulgarian list is an affiliated filter list written by Alex that specifically removes adverts on Bulgarian language websites.",
"categories": ["ads"],
"url": "https://stanev.org/abp/adblock_bg.txt"
},
{
"id": "abpindo",
"name": "ABPindo",
"website": "https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",
"description": "ABPindo is an affiliated filter list written by hermawan that specifically removes adverts on Indonesian language websites.",
"categories": ["ads"],
"url": "https://raw.githubusercontent.com/heradhis/indonesianadblockrules/master/subscriptions/abpindo.txt"
},
{
"id": "liste-ar",
"name": "Liste AR",
"website": "https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",
"description": "Liste AR is an affiliated filter list written by smed79 and Crits that specifically removes adverts on Arabic language websites.",
"categories": ["ads"],
"url": "https://easylist-downloads.adblockplus.org/Liste_AR.txt"
},
{
"id": "easylist-czech-slovak",
"name": "EasyList Czech and Slovak",
"website": "https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",
"description": "EasyList Czech and Slovak is an affiliated filter list written by tomasko126 that specifically removes adverts on Czech and Slovak language websites.",
"categories": ["ads"],
"url": "https://raw.githubusercontent.com/tomasko126/easylistczechandslovak/master/filters.txt"
},
{
"id": "latvian-list",
"name": "Latvian List",
"website": "https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",
"description": "Latvian List is an affiliated filter list written by anonymous74100 that specifically removes adverts on Latvian language websites.",
"categories": ["ads"],
"url": "https://notabug.org/latvian-list/adblock-latvian/raw/master/lists/latvian-list.txt"
},
{
"id": "easylist-hebrew",
"name": "EasyList Hebrew",
"website": "https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",
"description": "EasyList Hebrew is an affiliated filter list written by BsT that specifically removes adverts on Hebrew language websites.",
"categories": ["ads"],
"url": "https://raw.githubusercontent.com/easylist/EasyListHebrew/master/EasyListHebrew.txt"
},
{
"id": "easylist-lithuania",
"name": "EasyList Lithuania",
"website": "https://easylist.to/pages/other-supplementary-filter-lists-and-easylist-variants.html",
"description": "EasyList Lithuania is an affiliated filter list written by gymka that specifically removes adverts on Lithuanian language websites.",
"categories": ["ads"],
"url": "https://margevicius.lt/easylistlithuania.txt"
},
{
"id": "easyprivacy",
"name": "EasyPrivacy",
"website": "https://easylist.to",
"description": "EasyPrivacy is an optional supplementary filter list that completely removes all forms of tracking from the internet, including web bugs, tracking scripts and information collectors, thereby protecting your personal data.",
"categories": ["privacy"],
"url": "https://easylist.to/easylist/easyprivacy.txt"
},
{
"id": "fanboy-annoyance",
"name": "Fanboy's Annoyance List",
"website": "https://easylist.to",
"description": "Fanboy's Annoyance List blocks Social Media content, in-page pop-ups and other annoyances; thereby substantially decreasing web page loading times and uncluttering them.",
"categories": ["ads"],
"url": "https://easylist.to/easylist/fanboy-annoyance.txt"
},
{
"id": "fanboy-enhanced-tracking",
"name": "Fanboy's Enhanced Tracking List",
"website": "https://fanboy.co.nz",
"description": "Fanboy's Enhanced Tracking List blocks common tracking scripts such as Omniture, Webtrends, Foresee, Coremetrics, Google-Analytics, Touchclarity, ChannelIntelligence.",
"categories": ["privacy"],
"url": "https://fanboy.co.nz/enhancedstats.txt"
},
{
"id": "mvps-hosts",
"name": "MVPS HOSTS",
"website": "http://winhelp2002.mvps.org/hosts.htm",
"description": "Includes entries for most major parasites, hijackers and unwanted Adware/Spyware programs!",
"categories": ["security", "ads", "privacy"],
"url": "http://winhelp2002.mvps.org/hosts.txt"
},
{
"id": "someonewhocares",
"name": "someonewhocares.org",
"website": "https://someonewhocares.org/hosts/",
"description": "Protects you from many types of spyware, reduces bandwidth use, blocks certain pop-up traps, prevents user tracking by way of \"web bugs\" embedded in spam, provides partial protection to IE from certain web-based exploits and blocks most advertising you would otherwise be subjected to on the internet.",
"categories": ["security", "ads", "privacy"],
"url": "https://someonewhocares.org/hosts/hosts"
},
{
"id": "malware-domains",
"name": "Malware Domain Blocklist by RiskAnalytics",
"website": "https://www.malwaredomains.com",
"description": "Malware Prevention through Domain Blocking.",
"categories": ["security"],
"url": "https://mirror1.malwaredomains.com/files/justdomains"
},
{
"id": "antipopads",
"name": "antipopads",
"website": "https://github.com/Yhonay/antipopads",
"description": "List of popads.net domains.",
"categories": ["security", "ads"],
"url": "https://raw.githubusercontent.com/Yhonay/antipopads/master/hosts"
},
{
"id": "uncheckyads",
"name": "UncheckyAds",
"website": "https://unchecky.com",
"description": "Windows installers ads sources.",
"categories": ["ads", "security"],
"url": "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/UncheckyAds/hosts"
},
{
"id": "streamingads",
"name": "StreamingAds",
"website": "https://github.com/FadeMind/hosts.extras",
"description": "Streaming services ads sources.",
"categories": ["ads"],
"url": "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/StreamingAds/hosts"
},
{
"id": "squidblacklistorg-ads",
"name": "squidblacklist.org (Ads)",
"website": "https://www.squidblacklist.org",
"description": "Blocks advertisements and tracking.",
"categories": ["ads", "privacy"],
"url": "https://www.squidblacklist.org/downloads/dg-ads.acl"
},
{
"id": "cameleon",
"name": "CAMELEON",
"website": "http://sysctl.org/cameleon",
"description": "CAMELEON is a free system that helps Internet users or administrators to blocks web-adverts.",
"categories": ["ads"],
"url": "http://sysctl.org/cameleon/hosts"
},
{
"id": "mobileadtrackers",
"name": "MobileAdTrackers",
"website": "https://github.com/jawz101/MobileAdTrackers",
"description": "Taken from DNS logs while actively using Android apps over the years.",
"categories": ["ads", "privacy"],
"url": "https://raw.githubusercontent.com/jawz101/MobileAdTrackers/master/hosts"
},
{
"id": "ransomware-tracker",
"name": "Ransomware Tracker",
"website": "https://ransomwaretracker.abuse.ch",
"description": "Ransomware Tracker tracks and monitors the status of domain names that are associated with Ransomware, such as Botnet C&C servers, distribution sites and payment sites.",
"categories": ["security"],
"url": "https://ransomwaretracker.abuse.ch/downloads/RW_DOMBL.txt"
},
{
"id": "goodbye-ads",
"name": "Goodbye Ads",
"website": "https://github.com/jerryn70/GoodbyeAds",
"description": "Specially Designed for Mobile Ad Protection.",
"categories": ["ads"],
"url": "https://raw.githubusercontent.com/jerryn70/GoodbyeAds/master/Hosts/GoodbyeAds.txt"
},
{
"id": "zeus-tracker",
"name": "ZeuS Tracker",
"website": "https://zeustracker.abuse.ch/blocklist.php",
"description": "ZeuS Tracker offers various IP- and domain-blocklists that contains known ZeuS Command&Control server (C&C) assocaited with the ZeuS crimeware. Important: ZeuS Tracker has been discontinued on Jul 8th, 2019.",
"categories": ["security"],
"url": "https://zeustracker.abuse.ch/blocklist.php?download=domainblocklist"
},
{
"id": "1hosts",
"name": "1Hosts",
"website": "https://forum.xda-developers.com/android/general/badmojr-one-host-file-to-block-t3713360",
"description": "Protect your 'data' & eyeballs from being auctioned to the highest bidder.",
"categories": ["ads", "trackers"],
"url": "https://1hos.cf"
},
{
"id": "280blocker",
"name": "280blocker",
"website": "https://280blocker.net",
"description": "280blocker adblock domain lists",
"categories": ["ads"],
"countries": ["JP"],
"url": "https://280blocker.net/files/280blocker_domain.txt"
},
{
"id": "disconnect-tracking",
"name": "Disconnect (Tracking)",
"website": "https://disconnect.me",
"description": "Free yourself from unwanted tracking. Enjoy a faster, safer internet.",
"categories": ["privacy"],
"url": "https://s3.amazonaws.com/lists.disconnect.me/simple_tracking.txt"
},
{
"id": "disconnect-ads",
"name": "Disconnect (Ads)",
"website": "https://disconnect.me",
"description": "Free yourself from unwanted tracking. Enjoy a faster, safer internet.",
"categories": ["ads"],
"url": "https://s3.amazonaws.com/lists.disconnect.me/simple_ad.txt"
},
{
"id": "disconnect-malvertising",
"name": "Disconnect (Malvertising)",
"website": "https://disconnect.me",
"description": "Free yourself from unwanted tracking. Enjoy a faster, safer internet.",
"categories": ["ads", "security"],
"url": "https://s3.amazonaws.com/lists.disconnect.me/simple_malvertising.txt"
},
{
"id": "disconnect-malware",
"name": "Disconnect (Malware)",
"website": "https://disconnect.me",
"description": "Free yourself from unwanted tracking. Enjoy a faster, safer internet.",
"categories": ["security"],
"url": "https://s3.amazonaws.com/lists.disconnect.me/simple_malware.txt"
},
{
"id": "adguard-simplified",
"name": "AdGuard Simplified Domain Names filter",
"website": "https://github.com/AdguardTeam/AdguardSDNSFilter",
"description": "A filter composed of several other filters (English filter, Social media filter, Spyware filter, Mobile Ads filter, EasyList and EasyPrivacy) and simplified specifically to be better compatible with DNS-level ad blocking.",
"categories": ["ads", "privacy"],
"url": "https://adguardteam.github.io/AdGuardSDNSFilter/Filters/filter.txt"
},
{
"id": "adguard-base-filter",
"name": "AdGuard Base filter",
"website": "https://kb.adguard.com/general/adguard-ad-filters#english",
"description": "Filter that removes ads from websites in english.",
"categories": ["ads"],
"url": "https://filters.adtidy.org/extension/ublock/filters/2_without_easylist.txt"
},
{
"id": "adguard-mobile-ads-filter",
"name": "AdGuard Mobile Ads filter",
"website": "https://kb.adguard.com/general/adguard-ad-filters#mobile",
"description": "Filter for all known mobile ad networks. Useful for mobile devices.",
"categories": ["ads"],
"url": "https://filters.adtidy.org/extension/chromium/filters/11.txt"
},
{
"id": "adguard-tracking-protection-filter",
"name": "AdGuard Tracking Protection filter",
"website": "https://kb.adguard.com/general/adguard-ad-filters#privacy",
"description": "The most comprehensive list of various online counters and web analytics tools. Use this filter if you do not want your actions on the Internet to be tracked.",
"categories": ["privacy"],
"url": "https://filters.adtidy.org/extension/chromium/filters/3.txt"
},
{
"id": "adguard-social-media-filter",
"name": "AdGuard Social Media filter",
"website": "https://kb.adguard.com/general/adguard-ad-filters#social",
"description": "Filter for social media widgets (Like buttons and such).",
"categories": ["privacy"],
"url": "https://filters.adtidy.org/extension/chromium/filters/4.txt"
},
{
"id": "spam-404",
"name": "Spam404",
"website": "https://www.spam404.com",
"description": "This filter protects you from online scams. This filter is regularly updated with data collected by Spam404.com.",
"categories": ["security"],
"url": "https://raw.githubusercontent.com/Spam404/lists/master/main-blacklist.txt"
},
{
"id": "notrack-tracker-blocklist",
"name": "NoTrack Tracker Blocklist",
"website": "https://quidsup.net/notrack/blocklist.php",
"description": "Contains one of the largest compilation of sites associated with tracking your online activities and invading your privacy.",
"categories": ["privacy"],
"url": "https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-blocklist.txt"
},
{
"id": "notrack-malware-blocklist",
"name": "NoTrack Malware Blocklist",
"website": "https://gitlab.com/quidsup/notrack-blocklists",
"description": "Contains a much smaller list of malicious sites that don't neceassirly come under the category of tracking, but may still want to be avoided. This isn't my primary focus, therefore it should be used in conjunction with other malware blocklists.",
"categories": ["security"],
"url": "https://gitlab.com/quidsup/notrack-blocklists/raw/master/notrack-malware.txt"
},
{
"id": "motomos-referrer-spam-blacklist",
"name": "Motomo's Referrer Spam Blacklist",
"website": "https://matomo.org/blog/2015/05/stopping-referrer-spam",
"description": "This is a community-contributed list of referrer spammers maintained by Matomo, the leading open source web analytics platform.",
"categories": ["security"],
"url": "https://raw.githubusercontent.com/matomo-org/referrer-spam-blacklist/master/spammers.txt"
},
{
"id": "windowsspyblocker-spy",
"name": "WindowsSpyBlocker (Spy)",
"website": "https://github.com/crazy-max/WindowsSpyBlocker",
"description": "Block spying and tracking on Windows systems.",
"categories": ["privacy"],
"url": "https://raw.githubusercontent.com/crazy-max/WindowsSpyBlocker/master/data/hosts/spy.txt"
},
{
"id": "dsshield-suspicious-domain-list-high",
"name": "DShield.org Suspicious Domain List (High Level Sensitivity)",
"website": "https://www.dshield.org/suspicious_domains.html",
"description": "There are many suspicious domains on the internet. In an effort to identify them, as well as false positives, we have assembled weighted lists based on tracking and malware lists from different sources. ISC is collecting and categorizing various lists associated with a certain level of sensitivity. The high sensitivity list has fewer false positives down to the low sensitivity list with more false positives.",
"categories": ["security", "privacy"],
"url": "https://www.dshield.org/feeds/suspiciousdomains_High.txt"
},
{
"id": "dsshield-suspicious-domain-list-medium",
"name": "DShield.org Suspicious Domain List (Medium Level Sensitivity)",
"website": "https://www.dshield.org/suspicious_domains.html",
"description": "There are many suspicious domains on the internet. In an effort to identify them, as well as false positives, we have assembled weighted lists based on tracking and malware lists from different sources. ISC is collecting and categorizing various lists associated with a certain level of sensitivity. The high sensitivity list has fewer false positives down to the low sensitivity list with more false positives.",
"categories": ["security", "privacy"],
"url": "https://www.dshield.org/feeds/suspiciousdomains_Medium.txt"
},
{
"id": "dsshield-suspicious-domain-list-low",
"name": "DShield.org Suspicious Domain List (Low Level Sensitivity)",
"website": "https://www.dshield.org/suspicious_domains.html",
"description": "There are many suspicious domains on the internet. In an effort to identify them, as well as false positives, we have assembled weighted lists based on tracking and malware lists from different sources. ISC is collecting and categorizing various lists associated with a certain level of sensitivity. The high sensitivity list has fewer false positives down to the low sensitivity list with more false positives.",
"categories": ["security", "privacy"],
"url": "https://www.dshield.org/feeds/suspiciousdomains_Low.txt"
},
{
"id": "shallas-blacklists-porn",
"name": "Shalla's Blacklists (porn)",
"website": "http://www.shallalist.de",
"description": "Blocks sites about all kinds of sexual content ranging from bare bosoms to hardcore porn and sm.",
"categories": ["porn"],
"url": "https://raw.githubusercontent.com/cbuijs/shallalist/master/porn/domains"
},
{
"id": "shallas-blacklists-adv",
"name": "Shalla's Blacklists (adv)",
"website": "http://www.shallalist.de",
"description": "Blocks sites offering banners and banner creation as well as sites delivering banners to be shown in webpages. Advertising companies are blocked, too.",
"categories": ["ads"],
"url": "https://raw.githubusercontent.com/cbuijs/shallalist/master/adv/domains"
},
{
"id": "shallas-blacklists-tracker",
"name": "Shalla's Blacklists (tracker)",
"website": "http://www.shallalist.de",
"description": "Blocks sites keeping an eye on where you surf and what you do in a passive. Covers web bugs, counters and other tracking mechanism in web pages that do not interfere with the local computer yet collecting information about the surfing person for later analyis. Sites actively spying out the surfer by installing software or calling home sites are not covered with tracker but with -> spyware.",
"categories": ["privacy"],
"url": "https://raw.githubusercontent.com/cbuijs/shallalist/master/tracker/domains"
},
{
"id": "malware-domain-list",
"name": "Malware Domain List",
"website": "https://www.malwaredomainlist.com",
"description": "Malware Domain List is a non-commercial community project.",
"categories": ["security"],
"url": "https://www.malwaredomainlist.com/hostslist/hosts.txt"
},
{
"id": "badd-boyz-hosts",
"name": "Badd Boyz Hosts",
"website": "https://github.com/mitchellkrogza/Badd-Boyz-Hosts",
"description": "A hosts file for use on any operating system to block bad domains out of your servers or devices.",
"categories": ["security"],
"url": "https://raw.githubusercontent.com/mitchellkrogza/Badd-Boyz-Hosts/master/hosts"
},
{
"id": "hphosts-ats",
"name": "hpHosts (ATS / Ads & trackers)",
"website": "https://hosts-file.net",
"description": "hpHosts is a community managed and maintained hosts file that allows an additional layer of protection against access to ad, tracking and malicious websites.",
"categories": ["ads", "privacy"],
"url": "https://hosts-file.net/ad_servers.txt"
},
{
"id": "hphosts-emd",
"name": "hpHosts (EMD / Malware)",
"website": "https://hosts-file.net",
"description": "hpHosts is a community managed and maintained hosts file that allows an additional layer of protection against access to ad, tracking and malicious websites.",
"categories": ["security"],
"url": "https://hosts-file.net/emd.txt"
},
{
"id": "hphosts-exp",
"name": "hpHosts (EXP / Exploit)",
"website": "https://hosts-file.net",
"description": "hpHosts is a community managed and maintained hosts file that allows an additional layer of protection against access to ad, tracking and malicious websites.",
"categories": ["security"],
"url": "https://hosts-file.net/exp.txt"
},
{
"id": "hphosts-fsa",
"name": "hpHosts (FSA / Fraud)",
"website": "https://hosts-file.net",
"description": "hpHosts is a community managed and maintained hosts file that allows an additional layer of protection against access to ad, tracking and malicious websites.",
"categories": ["security"],
"url": "https://hosts-file.net/fsa.txt"
},
{
"id": "hphosts-grm",
"name": "hpHosts (GRM / Spam)",
"website": "https://hosts-file.net",
"description": "hpHosts is a community managed and maintained hosts file that allows an additional layer of protection against access to ad, tracking and malicious websites.",
"categories": ["security"],
"url": "https://hosts-file.net/fsa.txt"
},
{
"id": "hphosts-hjk",
"name": "hpHosts (HJK / Hijacking)",
"website": "https://hosts-file.net",
"description": "hpHosts is a community managed and maintained hosts file that allows an additional layer of protection against access to ad, tracking and malicious websites.",
"categories": ["security"],
"url": "https://hosts-file.net/hjk.txt"
},
{
"id": "hphosts-mmt",
"name": "hpHosts (MMT / Misleading marketing)",
"website": "https://hosts-file.net",
"description": "hpHosts is a community managed and maintained hosts file that allows an additional layer of protection against access to ad, tracking and malicious websites.",
"categories": ["security", "ads"],
"url": "https://hosts-file.net/mmt.txt"
},
{
"id": "hphosts-pha",
"name": "hpHosts (PHA / Illegal pharmacy sites)",
"website": "https://hosts-file.net",
"description": "hpHosts is a community managed and maintained hosts file that allows an additional layer of protection against access to ad, tracking and malicious websites.",
"categories": ["security", "ads"],
"url": "https://hosts-file.net/pha.txt"
},
{
"id": "hphosts-psh",
"name": "hpHosts (PSH / Phishing)",
"website": "https://hosts-file.net",
"description": "hpHosts is a community managed and maintained hosts file that allows an additional layer of protection against access to ad, tracking and malicious websites.",
"categories": ["security"],
"url": "https://hosts-file.net/psh.txt"
},
{
"id": "hphosts-pup",
"name": "hpHosts (PUP / Potentially unwanted programs)",
"website": "https://hosts-file.net",
"description": "hpHosts is a community managed and maintained hosts file that allows an additional layer of protection against access to ad, tracking and malicious websites.",
"categories": ["security"],
"url": "https://hosts-file.net/pup.txt"
},
{
"id": "hphosts-wrz",
"name": "hpHosts (WRZ / Warez & piracy)",
"website": "https://hosts-file.net",
"description": "hpHosts is a community managed and maintained hosts file that allows an additional layer of protection against access to ad, tracking and malicious websites.",
"categories": ["piracy"],
"url": "https://hosts-file.net/wrz.txt"
},
{
"id": "pornhosts",
"name": "pornhosts",
"website": "https://github.com/Clefspeare13/pornhosts",
"description": "This is an endeavour to find all porn domains and compile them into a single hosts to allow for easy blocking of porn on your local machine or on a network.",
"categories": ["porn"],
"url": "https://raw.githubusercontent.com/Clefspeare13/pornhosts/master/127.0.0.1/hosts"
},
{
"id": "sinfonietta-porn",
"name": "Sinfonietta (Porn)",
"website": "https://github.com/Sinfonietta/hostfiles",
"description": "A collection of porn domains.",
"categories": ["porn"],
"url": "https://raw.githubusercontent.com/Sinfonietta/hostfiles/master/pornography-hosts"
},
{
"id": "ut1-adult",
"name": "UT1 (adult)",
"website": "https://dsi.ut-capitole.fr/blacklists/index_en.php",
"description": "A collection of adult sites from erotic to hard pornography.",
"categories": ["porn"],
"url": "https://raw.githubusercontent.com/olbat/ut1-blacklists/master/blacklists/adult/domains"
},
{
"id": "ut1-social-networks",
"name": "UT1 (social_networks)",
"website": "https://dsi.ut-capitole.fr/blacklists/index_en.php",
"description": "All social networks sites.",
"categories": ["social"],
"url": "https://raw.githubusercontent.com/olbat/ut1-blacklists/master/blacklists/social_networks/domains"
},
{
"id": "chef-koch-spotify",
"name": "CHEF-KOCH's HOSTS Spotify Ad-Filter List",
"website": "https://github.com/CHEF-KOCH/Spotify-Ad-free",
"description": "Blocks all Spotify Ads, easy peasy lemon squeezy!",
"categories": ["spotify"],
"url": "https://raw.githubusercontent.com/CHEF-KOCH/Spotify-Ad-free/master/filter/Spotify-HOSTS.txt"
},
{
"id": "ut1-gambling",
"name": "UT1 (gambling)",
"website": "https://dsi.ut-capitole.fr/blacklists/index_en.php",
"description": "Gambling and games sites, casino, etc.",
"categories": ["gambling"],
"url": "https://raw.githubusercontent.com/olbat/ut1-blacklists/master/blacklists/gambling/domains"
},
{
"id": "kowabit",
"name": "kowabit.de - bl*cklist of death",
"website": "https://www.kowabit.de/blcklst",
"description": "I have been maintaining a blacklist to block advertising, mostly tracking services, to prevent data from being collected about me. I update the list regularly.",
"categories": ["ads", "trackers"],
"url": "https://blocklist.kowabit.de/list.txt"
},
{
"id": "energized-spark",
"name": "Energized Spark",
"website": "https://energized.pro",
"description": "Strictly blocks advertisements, malwares, spams, statistics & trackers on both web browsing and applications. True Lite Blocking.",
"categories": ["ads", "trackers", "security"],
"url": "https://raw.githubusercontent.com/EnergizedProtection/block/master/spark/formats/domains.txt"
},
{
"id": "energized-blu-go",
"name": "Energized Blu Go",
"website": "https://energized.pro",
"description": "Strictly blocks advertisements, malwares, spams, statistics & trackers on both web browsing and applications. Energized GO Edition.",
"categories": ["ads", "trackers", "security"],
"url": "https://raw.githubusercontent.com/EnergizedProtection/block/master/bluGo/formats/domains.txt"
},
{
"id": "energized-blu",
"name": "Energized Blu",
"website": "https://energized.pro",
"description": "Strictly blocks advertisements, malwares, spams, statistics & trackers on both web browsing and applications. Finest Midrange Protection.",
"categories": ["ads", "trackers", "security"],
"url": "https://raw.githubusercontent.com/EnergizedProtection/block/master/blu/formats/domains.txt"
},
{
"id": "energized-basic",
"name": "Energized Basic",
"website": "https://energized.pro",
"description": "Strictly blocks advertisements, malwares, spams, statistics & trackers on both web browsing and applications. Energized Basic Protection.",
"categories": ["ads", "trackers", "security"],
"url": "https://raw.githubusercontent.com/EnergizedProtection/block/master/basic/formats/domains.txt"
},
{
"id": "energized-porn",
"name": "Energized Porn",
"website": "https://energized.pro",
"description": "Strictly blocks advertisements, malwares, spams, statistics & trackers on both web browsing and applications. Energized Porn Blocking.",
"categories": ["porn"],
"url": "https://raw.githubusercontent.com/EnergizedProtection/block/master/porn/formats/domains.txt"
},
{
"id": "energized-ultimate",
"name": "Energized Ultimate",
"website": "https://energized.pro",
"description": "Strictly blocks advertisements, malwares, spams, statistics & trackers on both web browsing and applications. Energized Flagship Annoyances Protection.",
"categories": ["ads", "trackers", "security"],
"url": "https://raw.githubusercontent.com/EnergizedProtection/block/master/ultimate/formats/domains.txt"
},
{
"id": "energized-unified",
"name": "Energized Unified",
"website": "https://energized.pro",
"description": "Strictly blocks advertisements, malwares, spams, statistics & trackers on both web browsing and applications. Energized Flagship Annoyances & Porn Protection.",
"categories": ["ads", "trackers", "security", "porn"],
"url": "https://raw.githubusercontent.com/EnergizedProtection/block/master/unified/formats/domains.txt"
},
{
"id": "energized-xtreme-extension",
"name": "Energized Xtreme Extension",
"website": "https://energized.pro",
"description": "Strictly blocks advertisements, malwares, spams, statistics & trackers on both web browsing and applications. An Ultimate Protection Extension. May break apps and sites.",
"categories": ["ads", "trackers", "security"],
"url": "https://raw.githubusercontent.com/EnergizedProtection/block/master/extensions/xtreme/formats/domains.txt"
},
{
"id": "energized-social-extension",
"name": "Energized Social Extension",
"website": "https://energized.pro",
"description": "Strictly blocks advertisements, malwares, spams, statistics & trackers on both web browsing and applications. Blocks Everything Social!",
"categories": ["social"],
"url": "https://raw.githubusercontent.com/EnergizedProtection/block/master/extensions/social/formats/domains.txt"
},
{
"id": "energized-porn-lite-extension",
"name": "Energized Porn Lite Extension",
"website": "https://energized.pro",
"description": "Strictly blocks advertisements, malwares, spams, statistics & trackers on both web browsing and applications. Lite Pornware Blocking Extension.",
"categories": ["porn"],
"url": "https://raw.githubusercontent.com/EnergizedProtection/block/master/extensions/porn-lite/formats/domains.txt"
},
{
"id": "energized-regional-extension",
"name": "Energized Regional Extension",
"website": "https://energized.pro",
"description": "Strictly blocks advertisements, malwares, spams, statistics & trackers on both web browsing and applications. Regional Filter List.",
"categories": ["ads", "trackers", "security"],
"url": "https://raw.githubusercontent.com/EnergizedProtection/block/master/extensions/regional/formats/domains.txt"
},
{
"id": "finnish-easylist-addition",
"name": "Finnish Easylist addition",
"website": "https://github.com/finnish-easylist-addition/finnish-easylist-addition",
"description": "Finnish adblock list.",
"categories": ["ads", "trackers"],
"url": "https://raw.githubusercontent.com/finnish-easylist-addition/finnish-easylist-addition/master/Finland_adb.txt"
},
{
"id": "barbblock",
"name": "BarbBlock",
"website": "https://ssl.bblck.me",
"description": "It blacklists sites which have used DMCA takedowns to force removal from other content blocking lists. Such takedowns are categorically invalid, but they can be effective at intimidating small open-source projects into compliance.",
"categories": ["others"],
"url": "https://ssl.bblck.me/blacklists/hosts-file.txt"
},
{
"id": "bkrucarci-turk-adlist",
"name": "bkrucarci turk-adlist",
"website": "https://github.com/bkrucarci/turk-adlist",
"description": "Ad servers list to block ads on Turkish websites.",
"categories": ["ads"],
"countries": ["TR"],
"url": "https://raw.githubusercontent.com/bkrcrc/turk-adlist/master/hosts"
},
{
"id": "wally3k-personal",
"name": "Personal Blocklist by WaLLy3K",
"website": "https://firebog.net/about",
"description": "Content added to this list has been manually verified, and is updated irregularly.",
"categories": ["security", "ads", "privacy", "cryptomining"],
"url": "https://v.firebog.net/hosts/static/w3kbl.txt"
},
{
"id": "ru-adlist",
"name": "RU AdList",
"website": "https://forums.lanik.us/viewforum.php?f=102",
"description": "Russian supplement for EasyList.",
"categories": ["ads"],
"countries": ["RU"],
"url": "https://easylist-downloads.adblockplus.org/advblock.txt"
},
{
"id": "adguard-russian-filter",
"name": "AdGuard Russian filter",
"website": "https://kb.adguard.com/general/adguard-ad-filters#russian",
"description": "Filter that enables ad blocking on websites in Russian language.",
"categories": ["ads"],
"countries": ["RU"],
"url": "https://filters.adtidy.org/extension/chromium/filters/1.txt"
},
{
"id": "adaway",
"name": "AdAway",
"website": "https://adaway.org",
"description": "Blocking mobile ad providers and some analytics providers.",
"categories": ["ads", "trackers"],
"url": "https://adaway.org/hosts.txt"
},
{
"id": "phishing-army",
"name": "Phishing Army",
"website": "https://phishing.army",
"description": "The blocklist is updated every 6 hours. Generated from PhishTank and OpenPhish reports. Each domain is analyzed to eliminate false positives, through the Whitelist of Anudeep and the Alexa Rank.",
"categories": ["security"],
"url": "https://phishing.army/download/phishing_army_blocklist.txt"
},
{
"id": "phishing-army-extended",
"name": "Phishing Army (Extended)",
"website": "https://phishing.army",
"description": "The blocklist is updated every 6 hours. Generated from PhishTank and OpenPhish reports. Each domain is analyzed to eliminate false positives, through the Whitelist of Anudeep and the Alexa Rank. This extended blocklist also contains domains without subdomains.",
"categories": ["security"],
"url": "https://phishing.army/download/phishing_army_blocklist_extended.txt"
},
{
"id": "openphish",
"name": "OpenPhish",
"website": "https://openphish.com",
"description": "Timely. Accurate. Relevant Threat Intelligence.",
"categories": ["security"],
"url": "https://openphish.com/feed.txt"
},
{
"id": "nocoin",
"name": "NoCoin",
"website": "https://github.com/hoshsadiq/adblock-nocoin-list",
"description": "Block lists to prevent JavaScript miners.",
"categories": ["cryptomining"],
"url": "https://raw.githubusercontent.com/hoshsadiq/adblock-nocoin-list/master/hosts.txt"
},
{
"id": "coinblockerlists",
"name": "CoinBlockerLists",
"website": "https://gitlab.com/ZeroDot1/CoinBlockerLists",
"description": "Simple lists that can help prevent cryptomining in the browser or other applications.",
"categories": ["cryptomining"],
"url": "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts"
},
{
"id": "coinblockerlists-browser",
"name": "CoinBlockerLists (browser)",
"website": "https://gitlab.com/ZeroDot1/CoinBlockerLists",
"description": "Simple lists that can help prevent cryptomining in the browser or other applications.",
"categories": ["cryptomining"],
"url": "https://gitlab.com/ZeroDot1/CoinBlockerLists/raw/master/hosts_browser"
},
{
"id": "eth-phishing-detect",
"name": "ETH Phishing Detect",
"website": "https://github.com/MetaMask/eth-phishing-detect",
"description": "Blocks phishing domains targeting Ethereum users.",
"categories": ["security"],
"url": "https://raw.githubusercontent.com/MetaMask/eth-phishing-detect/master/src/hosts.txt"
},
{
"id": "add-2o7net",
"name": "add.2o7Net",
"website": "http://hostsfile.org/hosts.html",
"description": "2o7 Network tracking.",
"categories": ["privacy"],
"url": "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.2o7Net/hosts"
},
{
"id": "add-dead",
"name": "add.Dead",
"website": "http://hostsfile.org/hosts.html",
"description": "Dead websites. Against typos in URLs.",
"categories": ["security"],
"url": "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Dead/hosts"
},
{
"id": "add-risk",
"name": "add.Risk",
"website": "http://hostsfile.org/hosts.html",
"description": "Websites with risky content, malwares etc.",
"categories": ["security"],
"url": "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Risk/hosts"
},
{
"id": "add-spam",
"name": "add.Spam",
"website": "http://hostsfile.org/hosts.html",
"description": "Spam websites.",
"categories": ["security"],
"url": "https://raw.githubusercontent.com/FadeMind/hosts.extras/master/add.Spam/hosts"
},
{
"id": "nextdns-bittorrent-blocklist",
"name": "NextDNS BitTorrent Blocklist",
"website": "https://github.com/nextdns/bittorrent-blocklist",
"description": "Blocks BitTorrent websites (+ alternative domains & proxies), clients, trackers and DHT bootstrap nodes.",
"categories": ["p2p"],
"url": "https://raw.githubusercontent.com/nextdns/bittorrent-blocklist/master/domains"
},
{
"id": "torrent-trackers-host",
"name": "Torrent Trackers Host",
"website": "https://zackeryfretty.com/block-public-bittorrent-traffic-on-your-server-using-hosts",
"categories": ["p2p"],
"url": "https://gist.githubusercontent.com/Marfjeh/97f2f049b41b3f09eabcc04004073ae3/raw/58fe3d12c4157b0bda1a2af313809597ea54bb08/torrent-trackers-host"
},
{
"id": "fakenews",
"name": "fakenews",
"website": "https://github.com/marktron/fakenews",
"description": "This is a small attempt to limit my exposure to sites that fall under the umbrella of “fake news.” It blocks sites that willfully and regularly spread clickbait, hoaxes, propaganda and disinformation.",
"categories": ["misinformation"],
"url": "https://raw.githubusercontent.com/marktron/fakenews/master/fakenews"
},
{
"id": "nsa-blocklist",
"name": "NSABlocklist",
"website": "https://github.com/CHEF-KOCH/NSABlocklist",
"description": "Block all known NSA / GCHQ / C.I.A. / F.B.I. spying servers.",
"categories": ["privacy"],
"url": "https://raw.githubusercontent.com/CHEF-KOCH/NSABlocklist/master/HOSTS/HOSTS"
},
{
"id": "dbloisdnl",
"name": "dbl.oisd.nl",
"website": "https://oisd.nl",
"description": "Blocks Ads, Mobile Ads, Phishing, Malvertising, Malware, Tracking, Telemetry, CryptoJacking, Analytics, Spyware, Ransomware, Exploid, Fraud, Abuse, Scam, Spam, Hijack, Misleading Marketing.",
"categories": ["ads", "security", "privacy"],
"url": "https://dbl.oisd.nl"
},
{
"id": "dblmobileoisdnl",
"name": "dblmobile.oisd.nl",
"website": "https://oisd.nl",
"description": "Handpicked mobile/android/iOS lists, combined with some great other lists. This focuses primarily on mobile ads/malware.",
"categories": ["ads", "security", "privacy"],
"url": "https://dblmobile.oisd.nl"
},
{
"id": "lightswitch05-ads-tracking",
"name": "Lightswitch05 - Ads & Tracking",
"website": "https://www.github.developerdan.com/hosts",
"description": "A programmatically expanded list of hosts I've found to not be on other lists.",
"categories": ["ads", "privacy"],
"url": "https://www.github.developerdan.com/hosts/lists/ads-and-tracking-extended.txt"
},
{
"id": "lightswitch05-tracking-aggressive",
"name": "Lightswitch05 - Tracking Aggressive",
"website": "https://www.github.developerdan.com/hosts",
"description": "A very aggressive block list for tracking, geo-targeting, & ads. This list will likely break functionality, so do not use it unless you are willing to maintain your own whitelist.",
"categories": ["ads", "privacy"],
"url": "https://www.github.developerdan.com/hosts/lists/tracking-aggressive-extended.txt"
},
{
"id": "lightswitch05-amp-hosts",
"name": "Lightswitch05 - AMP Hosts",
"website": "https://www.github.developerdan.com/hosts",
"description": "Google's Accelerated Mobile Pages (AMP) are taking over the web. Block AMP pages with this list.",
"categories": ["others"],
"url": "https://www.github.developerdan.com/hosts/lists/amp-hosts-extended.txt"
},
{
"id": "hostsvn",
"name": "hostsVN",
"website": "https://github.com/bigdargon/hostsVN",
"description": "Hosts block ads of Vietnamese - Hosts chặn quảng cáo của người Việt.",
"categories": ["ads", "privacy"],
"countries": ["VN"],
"url": "https://raw.githubusercontent.com/bigdargon/hostsVN/master/hosts"
},
{
"id": "abpvn-list",
"name": "ABPVN List",
"website": "https://abpvn.com",
"description": "The ABP advertising filter is built with the mission of improving the browsing experience for users and for the Vietnamese.",
"categories": ["ads"],
"countries": ["VN"],
"url": "https://abpvn.com/android/abpvn.txt"
},
{
"id": "yhosts",
"name": "yhosts",
"website": "https://github.com/vokins/yhosts",
"description": "AD hosts爱好群,群号:201973909;",
"categories": ["ads", "privacy"],
"url": "https://raw.githubusercontent.com/vokins/yhosts/master/hosts"
},
{
"id": "frellwits-filter-lists",
"name": "Frellwit's filter lists",
"website": "https://github.com/lassekongo83/Frellwits-filter-lists",
"description": "This is Sweden's regional filter in uBlock Origin. It aims to reduce your exposure to ads, tracking, scams & badware, and occasionally some annoyances on (mostly) Swedish websites.",
"categories": ["ads", "privacy", "security"],
"countries": ["SE"],
"url": "https://raw.githubusercontent.com/lassekongo83/Frellwits-filter-lists/master/Frellwits-Swedish-Hosts-File.txt"
},
{
"id": "hufilter",
"name": "hufilter",
"website": "https://github.com/hufilter/hufilter",
"description": "Block hungarian ads.",
"categories": ["ads"],
"countries": ["HU"],
"url": "https://raw.githubusercontent.com/hufilter/hufilter/master/hufilter.txt"