-
Notifications
You must be signed in to change notification settings - Fork 33
/
whitelist_slim.txt
1125 lines (1125 loc) · 37.8 KB
/
whitelist_slim.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
@@|*-*-*-*.brokendnssec.net^$important
@@|*.*.livefilestore.com^$important
@@|*.*.pool.ntp.org^$important
@@|*._dns-sd._udp.*.in-addr.arpa^$important
@@|*.b.akamaiedge.net^$important
@@|*.bootstrap.libp2p.io^$important
@@|*.branch.io^$important
@@|*.cdnrobot.xyz^$important
@@|*.cloudfront.net^$important
@@|*.disquscdn.com^$important
@@|*.g.akamaiedge.net^$important
@@|*.gravatar.com^$important
@@|*.ip6.arpa^$important
@@|*.livefilestore.com^$important
@@|*.mwbsys.com^$important
@@|*.playfabapi.com^$important
@@|*.proxy.yewtu.be^$important
@@|*.pwdn.net^$important
@@|*.sonicbit.net^$important
@@|*vod-adaptive.akamaized.net^$important
@@|0.gravatar.com^$important
@@|0eaf.cardinalcommerce.com^$important
@@|0patch.com^$important
@@|1337x.to^$important
@@|149366088.v2.pressablecdn.com^$important
@@|22pixx.xyz^$important
@@|_dnsaddr.bootstrap.libp2p.io^$important
@@|a-v2.sndcdn.com^$important
@@|a.fsdn.com^$important
@@|a.idio.co^$important
@@|a.nel.cloudflare.com^$important
@@|a.tiles.mapbox.com^$important
@@|a48823c7ec3cf4539564-60c534a1284a12ce74ef84032e9b4e46.ssl.cf1.rackcdn.com^$important
@@|abnzb.com^$important
@@|ac.duckduckgo.com^$important
@@|account-api.protonmail.com^$important
@@|account.adguard.com^$important
@@|account.protonmail.com^$important
@@|account.wire.com^$important
@@|acctcdnmsftuswe2.azureedge.net^$important
@@|acctcdnvzeuno.azureedge.net^$important
@@|acdn.adaware.com^$important
@@|acer.com^$important
@@|adawareupdateservice.lavasoft.com^$important
@@|adaway.org^$important
@@|adblockplus.org^$important
@@|addictivetips.com^$important
@@|adguard.com^$important
@@|adidas.com^$important
@@|aex.dev.azure.com^$important
@@|airtable.com^$important
@@|ajax.aspnetcdn.com^$important
@@|ajax.cloudflare.com^$important
@@|ajay.app^$important
@@|akadns.net^$important
@@|akamai.net^$important
@@|akamaiedge.net^$important
@@|akamaihd.net^$important
@@|akamaitechnologies.com^$important
@@|akamaized.net^$important
@@|alomar.emsisoft.com^$important
@@|alt-images.codestream.com^$important
@@|altap.cz^$important
@@|alternativeto.net^$important
@@|amd.com^$important
@@|andauth.co^$important
@@|answersstaticfilecdnv2.azureedge.net^$important
@@|aoe-api.reliclink.com^$important
@@|aomeitech.com^$important
@@|api-da.wixmp.com^$important
@@|api-secure.solvemedia.com^$important
@@|api.adguard.com^$important
@@|api.betterttv.net^$important
@@|api.bit.ly^$important
@@|api.braintreegateway.com^$important
@@|api.doorman.fsapi.com^$important
@@|api.feedburner.com^$important
@@|api.giphy.com^$important
@@|api.invidious.io^$important
@@|api.jquery.com^$important
@@|api.k2s.cc^$important
@@|api.mapbox.com^$important
@@|api.metadataapi.net^$important
@@|api.nfl.com^$important
@@|api.nordvpn.com^$important
@@|api.nuget.org^$important
@@|api.opensubtitles.org^$important
@@|api.picotorrent.org^$important
@@|api.pushbullet.com^$important
@@|api.qwant.com^$important
@@|api.raindrop.io^$important
@@|api.segment.io^$important
@@|api.tiles.mapbox.com^$important
@@|api.typeform.com^$important
@@|api.winstall.app^$important
@@|api.xda-developers.com^$important
@@|app.plex.tv^$important
@@|app.raindrop.io^$important
@@|app.wire.com^$important
@@|appsitemsuggest-pa.clients6.google.com^$important
@@|aptoide.com^$important
@@|archive.org^$important
@@|arctic.emsisoft.com^$important
@@|ariang.mayswind.net^$important
@@|ark.mwbsys.com^$important
@@|arstechnica.com^$important
@@|asia.creativecdn.com^$important
@@|askleo.askleomedia.com^$important
@@|askleo.com^$important
@@|assets.acq-inc.com^$important
@@|assets.braintreegateway.com^$important
@@|assets.kogan.com^$important
@@|assets.onestore.ms^$important
@@|assets.pippa.io^$important
@@|assets.sb-cd.com^$important
@@|assets.www.cloudflare.com^$important
@@|au.pool.ntp.org^$important
@@|audible.com^$important
@@|audioboom.com^$important
@@|autocomplete.kaspersky.com^$important
@@|av-updateservice.adaware.com^$important
@@|avatarfiles.alphacoders.com^$important
@@|avatars.alphacoders.com^$important
@@|aws1.discourse-cdn.com^$important
@@|azuresearch-ussc.nuget.org^$important
@@|b.cdnst.net^$important
@@|b.thumbs.redditmedia.com^$important
@@|b.tiles.mapbox.com^$important
@@|bam-cell.nr-data.net^$important
@@|bankofamerica.com^$important
@@|banner.eset.com^$important
@@|battlelog.battlefield.com^$important
@@|bbc.co.uk^$important
@@|bbc.com^$important
@@|bc.vc^$important
@@|bcvc.live^$important
@@|beeftext.org^$important
@@|behindthevoiceactors.com^$important
@@|bibo.api.swiftkey.com^$important
@@|binary-factory.kde.org^$important
@@|bit.ly^$important
@@|bitdefender.net^$important
@@|bitsum.com^$important
@@|blackberry.com^$important
@@|blacklist.tampermonkey.net^$important
@@|blitz.mb-cosmos.com^$important
@@|block-test.developerdan.com^$important
@@|blocklist.cyberthreatcoalition.org^$important
@@|blocklist.de^$important
@@|blog.ajay.app^$important
@@|blog.bit.ly^$important
@@|blog.codesector.com^$important
@@|blog.disqus.com^$important
@@|blog.dopus.com^$important
@@|blog.gravatar.com^$important
@@|blzmedia-a.akamaihd.net^$important
@@|blznav.akamaized.net^$important
@@|bnetproduct-a.akamaihd.net^$important
@@|bnetshopus.akamaized.net^$important
@@|brave.com^$important
@@|brazil.kaspersky.com^$important
@@|brazzers.com^$important
@@|bromite.org^$important
@@|c*.patreonusercontent.com^$important
@@|c*.wp.com^$important
@@|c.oracleinfinity.io^$important
@@|c.ptgncdn.com^$important
@@|c9.trafficdeposit.com^$important
@@|cacerts.digicert.com^$important
@@|caldav.fe.apple-dns.net^$important
@@|caldav.icloud.com^$important
@@|calendars.fe.apple-dns.net^$important
@@|canvas-cdn-prod.azureedge.net^$important
@@|captcha.website^$important
@@|cart.production.store-web.dynamics.com^$important
@@|causeway.obsidian.net^$important
@@|cdburnerxp.se^$important
@@|cdn*.appwork.org^$important
@@|cdn*.aptoide.com^$important
@@|cdn*.iconfinder.com^$important
@@|cdn-images.xda-developers.com^$important
@@|cdn.adguard.com^$important
@@|cdn.base64decode.org^$important
@@|cdn.betterttv.net^$important
@@|cdn.chocolatey.org^$important
@@|cdn.cloudflare.net^$important
@@|cdn.contentful.com^$important
@@|cdn.cookielaw.org^$important
@@|cdn.datatables.net^$important
@@|cdn.flowplayer.com^$important
@@|cdn.fwupd.org^$important
@@|cdn.globalsigncdn.com.cdn.cloudflare.net^$important
@@|cdn.guru99.com^$important
@@|cdn.imagecurl.com^$important
@@|cdn.jsdelivr.net.cdn.cloudflare.net^$important
@@|cdn.jsdelivr.net^$important
@@|cdn.kde.org^$important
@@|cdn.mountainduck.io^$important
@@|cdn.mwbsys.com^$important
@@|cdn.pling.com^$important
@@|cdn.podia.com^$important
# @@|cdn.polyfill.io^$important - potential malware vector : https://github.com/hl2guide/AdGuard-Home-Whitelist/issues/11
@@|cdn.shopify.com^$important
@@|cdn.sonicbit.net^$important
@@|cdn.sstatic.net^$important
@@|cdn.staticaly.com^$important
@@|cdn.streamlabs.com^$important
@@|cdn.superantispyware.com^$important
@@|cdn.ziffstatic.com^$important
@@|cdn1.unrealengine.com^$important
@@|cdn1.xda-developers.com^$important
@@|cdn2.hubspot.net^$important
@@|cdn2.unrealengine.com^$important
@@|cdn4.appwork.org^$important
@@|cdn57.androidauthority.net^$important
@@|cdn7.appwork.org^$important
@@|cdnjs.cloudflare.com^$important
@@|cdns.us1.gigya.com^$important
@@|cdp.cloud.unity3d.com^$important
@@|cdp.rapidssl.com^$important
@@|cerberus-front.easyanticheat.net^$important
@@|cf-hls-media.sndcdn.com^$important
@@|cfos-blog.de^$important
@@|cfos.de^$important
@@|cha1.speedtest.telstra.net^$important
@@|change.org^$important
@@|check.ddos-guard.net^$important
@@|chocolatey.disqus.com^$important
@@|chocolatey.org^$important
@@|choosealicense.com^$important
@@|chris.dziemborowicz.com^$important
@@|christitus.com^$important
@@|christitus.podia.com^$important
@@|chrome.cloudflare-dns.com^$important
@@|ci.rdtcdn.com^$important
@@|cli.speedtest.net^$important
@@|client-api.arkoselabs.com^$important
@@|cloud.addictivetips.com^$important
@@|cloud.hitmanpro.com^$important
@@|cloudflare.com^$important
@@|code.getmdl.io^$important
@@|code.jquery.com^$important
@@|codesector.*.backblazeb2.com^$important
@@|codesector.com^$important
@@|collector-service.api.lbry.tv^$important
@@|communities.vmware.com^$important
@@|community.chocolatey.org^$important
@@|community.kde.org^$important
@@|companyaccount.kaspersky.com^$important
@@|config.edge.skype.com^$important
@@|config.uca.cloud.unity3d.com^$important
@@|connectivitycheck.android.com^$important
@@|consent.trustarc.com^$important
@@|content.cloudflare.com^$important
@@|content.invisioncic.com^$important
@@|controlpanel.newshosting.com^$important
@@|cpuid.com^$important
@@|crapblock.theel0ja.info^$important
@@|creativecommons.org^$important
@@|crl.comodoca.com^$important
@@|crl.comodoca4.com^$important
@@|crl.entrust.net^$important
@@|crl.globalsign.com^$important
@@|crl.globalsign.net^$important
@@|crl.identrust.com^$important
@@|crl.pki.goog^$important
@@|crl.sca1b.amazontrust.com^$important
@@|crl.starfieldtech.com^$important
@@|crl.thawte.com^$important
@@|crl.usertrust.com^$important
@@|crl.verisign.com^$important
@@|crl3.digicert.com^$important
@@|crl4.digicert.com^$important
@@|cs9.wac.phicdn.net^$important
@@|cyberthreatcoalition.org^$important
@@|d*.alternativeto.net^$important
@@|d*.debrid.link^$important
@@|d2nvs31859zcd8.cloudfront.net^$important
@@|d3aqoihi2n8ty8.cloudfront.net^$important
@@|daftsex.com^$important
@@|dash.cloudflare.com^$important
@@|dash.sonicbit.net^$important
@@|dashboard.plex.tv^$important
@@|data-cdn.mbamupdates.com^$important
@@|dbl.oisd.nl^$important
@@|dc.oracleinfinity.io^$important
@@|dci.sophosupd.net^$important
@@|de.pool.ntp.org^$important
@@|debian.org^$important
@@|decentraleyes.org^$important
@@|definitionsbd.adaware.com^$important
@@|defkey.com^$important
@@|deliver.ptgncdn.com^$important
@@|dell.com^$important
@@|depositfiles.com^$important
@@|dev.mysql.com^$important
@@|developers.cloudflare.com^$important
@@|device.maxmind.com^$important
@@|dfiles.eu^$important
@@|dht.aelitis.com^$important
@@|dht.libtorrent.org^$important
@@|dht.transmissionbt.com^$important
@@|disq.us^$important
@@|disqus.com^$important
@@|disquscdn.com^$important
@@|dl*.oo-software.com^$important
@@|dl.bitsum.com^$important
@@|dl.emsisoft.com^$important
@@|dl.humble.com^$important
@@|dl.opensubtitles.org^$important
@@|dlwnextsetting.cloudapp.net^$important
@@|dns*.quad9.net^$important
@@|dns-family.adguard.com^$important
@@|dns.cloudflare.com^$important
@@|dns.msftncsi.com^$important
@@|dns.quad9.net^$important
@@|docs.chocolatey.org^$important
@@|docs.invidious.io^$important
@@|docs.picotorrent.org^$important
@@|docs.scrapy.org^$important
@@|download*.portableapps.com^$important
@@|download-alt.easyanticheat.net^$important
@@|download-chromium.appspot.com^$important
@@|download.acronis.com^$important
@@|download.adguard.com^$important
@@|download.db-ip.com^$important
@@|download.documentfoundation.org^$important
@@|download.eac-cdn.com^$important
@@|download.eset.com^$important
@@|download.macrium.com^$important
@@|download.msi.com^$important
@@|download.sourceforge.net^$important
@@|download.sysinternals.com^$important
@@|download.videolan.org^$important
@@|download1.gigabyte.com^$important
@@|downloadmirror.intel.com^$important
@@|downloadnada.adaware.com^$important
@@|downloads.auslogics.com^$important
@@|downloads.intercomcdn.com^$important
@@|downloads.malwarebytes.com^$important
@@|downloads.mariadb.org^$important
@@|downloads.sourceforge.net^$important
@@|downloads.vivaldi.com^$important
@@|downloads.wisecleaner.com^$important
@@|driveroff.net^$important
@@|drupal.org^$important
@@|dstik9906m659.cloudfront.net^$important
@@|duckduckgo.com^$important
@@|dyncdn.me^$important
@@|dyncdn2.com^$important
@@|e7641.b.akamaiedge.net^$important
@@|e8690.e12.akamaiedge.net^$important
@@|eaassets-a.akamaihd.net^$important
@@|easyanticheat.net^$important
@@|easylist-downloads.adblockplus.org^$important
@@|easylist.to^$important
@@|edgeassetservice.azureedge.net^$important
@@|editor.swagger.io^$important
@@|eff.org^$important
@@|ekr.zdassets.com^$important
@@|elb-lon-gcp.nimbus.bitdefender.net^$important
@@|elb-nvi-gcp.nimbus.bitdefender.net^$important
@@|elb-ore-gcp.nimbus.bitdefender.net^$important
@@|elm-lang.org^$important
@@|endeavouros.com^$important
@@|engageub.pythonanywhere.com^$important
@@|enpass.io^$important
@@|eos-cloudsaves-live.s3.amazonaws.com^$important
@@|esupport.gigabyte.com^$important
@@|evcs-ocsp.ws.symantec.com^$important
@@|event.msi.com^$important
@@|events.mapbox.com^$important
@@|extensions-loader.azurewebsites.net^$important
@@|extensions.libreoffice.org^$important
@@|extensionupdater.brave.com^$important
@@|external-content.duckduckgo.com^$important
@@|eztv.re^$important
@@|f-droid.org^$important
@@|f-secure.com^$important
@@|f.hubspotusercontent40.net^$important
@@|fanboy.co.nz^$important
@@|fdroid.tetaneutral.net^$important
@@|feed.xda-developers.com^$important
@@|feedback.xda-developers.com^$important
@@|feedbackws.icloud.com^$important
@@|feedly.com^$important
@@|feeds.acast.com^$important
@@|feeds.simplecast.com^$important
@@|fetch.jdcdn.org^$important
@@|ffmpeg.org^$important
@@|ffp4g1ylyit3jdyti1hqcvtb-wpengine.netdna-ssl.com^$important
@@|ffprofile.com^$important
@@|filejoker.net^$important
@@|files*.majorgeeks.com^$important
@@|files.community^$important
@@|files.pythonhosted.org^$important
@@|files.surfright.nl^$important
@@|fileshare1240.depositfiles.com^$important
@@|filterlists.com^$important
@@|filters.adtidy.org^$important
@@|fishcodelib.com^$important
@@|fitgirl-repacks.site^$important
@@|flow.lavasoft.com^$important
@@|fluffy-blocklist.skcat.tk^$important
@@|fontawesome-cdn.fonticons.netdna-cdn.com^$important
@@|fonts.intercomcdn.com^$important
@@|fonts.podia.com^$important
@@|form.typeform.com^$important
@@|forms.gle^$important
@@|forum.kaspersky.com^$important
@@|forum.snahp.it^$important
@@|forum.xda-developers.com^$important
@@|forum.xfce.org^$important
@@|forums.appleinsider.com^$important
@@|forums.plex.tv^$important
@@|forums.roku.com^$important
@@|forums.sabnzbd.org^$important
@@|forums.whirlpool.net.au^$important
@@|forums.xda-developers.com^$important
@@|fossbytes.com^$important
@@|fp-*-nocache.azureedge.net^$important
@@|fp-*.azureedge.net^$important
@@|fp-*.azurefd.net^$important
@@|fp-afd-nocache-ccp.azureedge.net^$important
@@|fp-afd.azureedge.net^$important
@@|fp-afd.azureedge.us^$important
@@|fp-afd.azurefd.us^$important
@@|fp-vp.azureedge.net^$important
@@|fp-vs-nocache.azureedge.net^$important
@@|fp-vs.azureedge.net^$important
@@|fping.org^$important
@@|fr.pool.ntp.org^$important
@@|fr.uptodown.com^$important
@@|free.hitnews.com^$important
@@|free.kaspersky.com^$important
@@|freetubeapp.io^$important
@@|frog.wix.com^$important
@@|fs*.fastfile.cc^$important
@@|fs*.filejoker.net^$important
@@|ftp.cdnrobot.xyz^$important
@@|ftp.chocolatey.org^$important
@@|ftp.de.debian.org^$important
@@|ftprivacy.cloud^$important
@@|galleryn*.awemdia.com^$important
@@|get.xda-developers.com^$important
@@|getmusicbee.com^$important
@@|getsharex.com^$important
@@|ghacks.net^$important
@@|gift.card.auspost^$important
@@|globalupload.io^$important
@@|gmail.com^$important
@@|go.dev^$important
@@|go.eset.com^$important
@@|go.eset.eu^$important
@@|golang.org^$important
@@|goo.gl^$important
@@|gossip.easyanticheat.net^$important
@@|gravatar.com^$important
@@|greasyfork.org^$important
@@|greasyfork.s3.us-east-2.amazonaws.com^$important
@@|guardianproject.info^$important
@@|gumtree.com^$important
@@|guru99.com^$important
@@|guts2.sp.f-secure.com^$important
@@|gyan.dev^$important
@@|h20572.www2.hp.com^$important
@@|hash.hitmanpro.com^$important
@@|hcaptcha.com^$important
@@|help.codesector.com^$important
@@|help.kaspersky.com^$important
@@|help.kogan.com^$important
@@|help.macrium.com^$important
@@|help.vivaldi.com^$important
@@|helpme.macrium.com^$important
@@|hemera.pwdn.net^$important
@@|hidefile.ml^$important
@@|hitnews.com^$important
@@|hk.pool.ntp.org^$important
@@|home.pl^$important
@@|home.wanadoo.nl^$important
@@|homedepot.com^$important
@@|homedepot.ugc.bazaarvoice.com^$important
@@|hosts.anudeep.me^$important
@@|hotmail.com^$important
@@|https-rulesets.org^$important
@@|hubble.mb-cosmos.com^$important
@@|humblebundle.com^$important
@@|hydra.easyanticheat.net^$important
@@|i*.imageban.ru^$important
@@|i*.sndcdn.com^$important
@@|i*.wp.com^$important
@@|i-dont-care-about-cookies.eu^$important
@@|i.ebayimg.com^$important
@@|i.ibb.co^$important
@@|i.imgur.com^$important
@@|i.redd.it^$important
@@|i.reddit.com^$important
@@|i.scdn.co^$important
@@|i.stack.imgur.com^$important
@@|i.ytimg.com^$important
@@|i1.ytimg.com^$important
@@|icons8.com^$important
@@|image.flaticon.com^$important
@@|imagecurl.com^$important
@@|imageglass.org^$important
@@|images-na.ssl-images-amazon.com^$important
@@|images-wixmp-ed30a86b8c4ca887773594c2.wixmp.com^$important
@@|images.blz-contentstack.com^$important
@@|images.ctfassets.net^$important
@@|images.duckduckgo.com^$important
@@|images.platforum.cloud^$important
@@|images.theabcdn.com^$important
@@|images.unsplash.com^$important
@@|imageshack.com^$important
@@|imagetwist.com^$important
@@|imagizer.imageshack.com^$important
@@|img*.imagetwist.com^$important
@@|img.askleomedia.com^$important
@@|img.itch.zone^$important
@@|img.shields.io^$important
@@|img.xda-developers.com^$important
@@|img33.imagetwist.com^$important
@@|imgs.hcaptcha.com^$important
@@|impactserving.com^$important
@@|improving.duckduckgo.com^$important
@@|imx.to^$important
@@|in.appcenter.ms^$important
@@|index.kaspersky.com^$important
@@|inferno.demonoid.is^$important
@@|ingame-news.ubi.com^$important
@@|inoreader.com^$important
@@|install.speedtest.net^$important
@@|intel.com^$important
@@|invent.kde.org^$important
@@|ip.api.rec.adguard.org^$important
@@|iplists.firehol.org^$important
@@|ipv4.tracker.harry.lu^$important
@@|ipv4only.arpa^$important
@@|ir.ebaystatic.com^$important
@@|itsfoss.com^$important
@@|ixpeering.dl.sourceforge.net^$important
@@|joewein.net^$important
@@|join.slack.com^$important
@@|joplinapp.org^$important
@@|jp.pool.ntp.org^$important
@@|jquery.com^$important
@@|js-agent.newrelic.com^$important
@@|js.hcaptcha.com^$important
@@|juno-error-reporter-prod-junoerrorreporters*.s3.amazonaws.com^$important
@@|k2s.cc^$important
@@|ka-f.fontawesome.com^$important
@@|kb.adguard.com^$important
@@|kde.modular.im^$important
@@|kde.org^$important
@@|kdeconnect.kde.org^$important
@@|keystone.mwbsys.com^$important
@@|kiboke-studio.hr^$important
@@|kickasstorrents.to^$important
@@|kit.fontawesome.com^$important
@@|kitboga.com^$important
@@|kmart.com^$important
@@|koofr.eu^$important
@@|labs.mysql.com^$important
@@|letsencrypt.org^$important
@@|letsupload.io^$important
@@|lgincdnmsftuswe2.azureedge.net^$important
@@|lgincdnvzeuno.azureedge.net^$important
@@|libretorrent.en.aptoide.com^$important
@@|librewolf.net^$important
@@|limetorrents.info^$important
@@|lineup-images.scdn.co^$important
@@|links.duckduckgo.com^$important
@@|links.malwarebytes.com^$important
@@|links.podia.com^$important
@@|lists.blocklist.de^$important
@@|lists.noads.online^$important
@@|live.sysinternals.com^$important
@@|local.adguard.com^$important
@@|local.adguard.org^$important
@@|logs.unchecky.com^$important
@@|m.audible.com^$important
@@|m.blackberry.com^$important
@@|m.dell.com^$important
@@|m.hbo.com^$important
@@|m.media-amazon.com^$important
@@|m1.nsimg.net^$important
@@|m2.nsimg.net^$important
@@|macrium.com^$important
@@|mail.kde.org^$important
@@|mail.protonmail.com^$important
@@|mail.xda-developers.com^$important
@@|majorgeeks.com^$important
@@|mapbox.com^$important
@@|mariadb.org^$important
@@|massive.io^$important
@@|master.dl.sourceforge.net^$important
@@|master.net-radio.fr^$important
@@|maxcdn.bootstrapcdn.com^$important
@@|mc.yandex.ru^$important
@@|mcc-production.azurefd.net^$important
@@|mcmilk.de^$important
@@|me-en.kaspersky.com^$important
@@|me.kaspersky.com^$important
@@|media*.giphy.com^$important
@@|media.kaspersky.com^$important
@@|media.kingston.com^$important
@@|media.tenor.com^$important
@@|media.xda-developers.com^$important
@@|mel1.speedtest.telstra.net^$important
@@|mem.gfx.ms^$important
@@|member.hitnews.com^$important
@@|mimir.vivaldi.com^$important
@@|mirror.aarnet.edu.au^$important
@@|mirror.internet.asn.au^$important
@@|mk0ghacksnety2pjrgh8.kinstacdn.com^$important
@@|mobile-collector.newrelic.com^$important
@@|mobile.kaspersky.com^$important
@@|moddb.com^$important
@@|mpc-hc.org^$important
@@|mpv.io^$important
@@|mpv.srsfckn.biz^$important
@@|msftncsi.com^$important
@@|mute.bradconte.com^$important
@@|mwf-service.akamaized.net^$important
@@|my.kaspersky.com^$important
@@|mysql.com^$important
@@|nchc.dl.sourceforge.net^$important
@@|neosmart.net^$important
@@|newassets.hcaptcha.com^$important
@@|newegg.com^$important
@@|news.itsfoss.com^$important
@@|news.usenet.farm^$important
@@|newvirus.kaspersky.com^$important
@@|nexus-files.b-cdn.net^$important
@@|nike.com^$important
@@|nikkhokkho.sourceforge.io^$important
@@|nimbus.bitdefender.net^$important
@@|nitroflare.com^$important
@@|notepad-plus-plus.org^$important
@@|notification-prod.svc.gearsofwar.net^$important
@@|nuget.org^$important
@@|nzb360.com^$important
@@|nzbfinder.ws^$important
@@|nzbstars.com^$important
@@|o741402.ingest.sentry.io^$important
@@|obsproject.com^$important
@@|oc.speedtest.i3d.net.prod.hosts.ooklaserver.net^$important
@@|ocsp*.globalsign.com^$important
@@|ocsp.comodoca.com^$important
@@|ocsp.comodoca4.com^$important
@@|ocsp.digicert.com^$important
@@|ocsp.globalsign.com^$important
@@|ocsp.godaddy.com^$important
@@|ocsp.msocsp.com^$important
@@|ocsp.pki.goog^$important
@@|ocsp.sca1b.amazontrust.com^$important
@@|ocsp.sectigo.com^$important
@@|ocsp.starfieldtech.com^$important
@@|ocsp.thawte.com^$important
@@|ocsp.usertrust.com^$important
@@|ocsp.verisign.com^$important
@@|odinvzc.azureedge.net^$important
@@|odysee.com^$important
@@|office.net^$important
@@|office365.com^$important
@@|oneclient.sfx.ms^$important
@@|onegetcdn.azureedge.net^$important
@@|onlinescanner.eset.com^$important
@@|onsite2.researchintel.com^$important
@@|oo-software.com^$important
@@|open-vsx.org^$important
@@|open.scdn.co^$important
@@|open.stealth.si^$important
@@|openphish.com^$important
@@|opensubtitles.org^$important
@@|opentor.net^$important
@@|opentracker.i2p.rocks^$important
@@|opentracker.xyz^$important
@@|openuserjs.org^$important
@@|oracle.com^$important
@@|orca.pet^$important
@@|orsp-c1-ane1.aws.orsp.f-secure.com^$important
@@|orsp.f-secure.com^$important
@@|ouo.io^$important
@@|ouo.press^$important
@@|p.ebaystatic.com^$important
@@|p.sfx.ms^$important
@@|p.typekit.net^$important
@@|p15.zdassets.com^$important
@@|p20.zdassets.com^$important
@@|p4p.arenabg.com^$important
@@|packages.chocolatey.org^$important
@@|pages.ebay.com^$important
@@|panel.seedbox.io^$important
@@|password.kaspersky.com^$important
@@|pastebin.com^$important
@@|payments.appwork.org^$important
@@|payments.braintree-api.com^$important
@@|payments.openalerts.com^$important
@@|pdst.fm^$important
@@|pgl.yoyo.org^$important
@@|phishing.army^$important
@@|pi-hole.net^$important
@@|picotorrent.org^$important
@@|pics.ebaystatic.com^$important
@@|pinata.cloud^$important
@@|pixhost.to^$important
@@|pkg.tox.chat^$important
@@|player.h-cdn.com^$important
@@|playnite.link^$important
@@|plex.tv^$important
# @|polyfill.io^$important - potential malware vector : https://github.com/hl2guide/AdGuard-Home-Whitelist/issues/11
@@|pool.apk.aptoide.com^$important
@@|pool.ntp.org^$important
@@|portableapps.com^$important
@@|premium-*.nexus-cdn.com^$important
@@|preview.redd.it^$important
@@|privacy.sexy^$important
@@|privacybadger.org^$important
@@|prod-assets.wire.com^$important
@@|prod-cleo.malwarebytes.com^$important
@@|prod-nginz-https.wire.com^$important
@@|prod-nginz-ssl.wire.com^$important
@@|prod-www.malwarebytes.com^$important
@@|profile.gigabyte.com^$important
@@|programadorwebvalencia.com^$important
@@|promo.kaspersky.com^$important
@@|promotions.newegg.com^$important
@@|protonmail.ch^$important
@@|protonmail.com^$important
@@|protonmail.uservoice.com^$important
@@|protonvpn.com^$important
@@|proxy.plex.tv^$important
@@|ps1prdapp01-canary.netmon.azure.com^$important
@@|psg-prod-eastus.azureedge.net^$important
@@|pt.potwm.com^$important
@@|push.chocolatey.org^$important
@@|pypi.org^$important
@@|q.ebaystatic.com^$important
@@|qa.sockets.stackexchange.com^$important
@@|quad9.net^$important
@@|qwant.com^$important
@@|r.msftstatic.com^$important
@@|r3.o.lencr.org^$important
@@|r5---sn-ntqe6nes.c.2mdn.net^$important
@@|raindrop.io^$important
@@|rapidgator.net^$important
@@|rapidshare.com^$important
@@|raw.blocklist.vsnz.net^$important
@@|rd-icons-icons8.gumlet.com^$important
@@|rd-icons-icons8.gumlet.io^$important
@@|rdl.ink^$important
@@|reader.usenet.agency^$important
@@|recaptcha.net^$important
@@|redcross.org^$important
@@|redditstatic.com^$important
@@|redirect.kaspersky.com^$important
@@|redirector.gvt1.com^$important
@@|redtube.com^$important
@@|refer.wordpress.com^$important
@@|referrals.brave.com^$important
@@|remnants.hitmanpro.com^$important
@@|repo1.maven.org^$important
@@|report-uri.cloudflare.com^$important
@@|reports.adguard.com^$important
@@|res.cloudinary.com^$important
@@|reshade.me^$important
@@|resource.dopus.com^$important
@@|rest.iad-03.braze.com^$important
@@|results.speedtest.net^$important
@@|retracker.ip.ncnet.ru^$important
@@|retracker.lanta-net.ru^$important
@@|retracker.local^$important
@@|reviews.kaspersky.com^$important
@@|roosterteeth.com^$important
@@|router.bitcomet.com^$important
@@|router.bittorrent.com^$important
@@|router.utorrent.com^$important
@@|rover.ebay.com^$important
@@|roxy.azurefd.net^$important
@@|rss.acast.com^$important
@@|rtss.guru3d.com^$important
@@|rubyinstaller.org^$important
@@|rules2.clearurls.xyz^$important
@@|rumble.com^$important
@@|s*.rapidgator.net^$important
@@|s*.riotpixels.net^$important
@@|s*.symcb.com^$important
@@|s*.trafficdeposit.com^$important
@@|s3-eu-west-1.amazonaws.com^$important
@@|s3.wasabisys.com^$important
@@|s334284386.t.eloqua.com^$important
@@|s82i.app.link^$important
@@|sabnzbd.org^$important
@@|salesforce.com^$important
@@|sb-ssl.brave.com^$important
@@|sb.adtidy.org^$important
@@|sb.ltn.fi^$important
@@|scan.hitmanpro.com^$important
@@|scan.kaspersky.com^$important
@@|scone-pa.clients6.google.com^$important
@@|scoop.sh^$important
@@|scrootca2.ocsp.secomtrust.net^$important
@@|sdl.adaware.com^$important
@@|search.f-droid.org^$important
@@|search.spotxchange.com^$important
@@|sebsauvage.net^$important
@@|secure.fanboy.co.nz^$important
@@|securedownloads.superantispyware.com^$important
@@|secureir.ebaystatic.com^$important
@@|seed*.debrid.link^$important
@@|seedr.cc^$important
@@|self-test.sabnzbd.org^$important
@@|send.cm^$important
@@|sentry.lbry.tech^$important
@@|sentry.unknownworlds.com^$important
@@|services.unifiedremote.com^$important
@@|sfx.thelazy.net^$important
@@|share.dmca.gripe^$important
@@|shell.cdn.office.net^$important
@@|shield.sitelock.com^$important
@@|shields.io^$important
@@|shop.lego.com^$important
@@|sirius.mwbsys.com^$important
@@|slow-*.keep2share.cc^$important
@@|snahp.it^$important
@@|sockets.betterttv.net^$important
@@|songbird.cardinalcommerce.com^$important
@@|sonicbit.net^$important
@@|sonicseedbox.com^$important
@@|sos.adaware.com^$important
@@|sourceforge.net^$important
@@|sp.rmbl.ws^$important
@@|sp.streamlabs.com^$important
@@|sparkcdneus2.azureedge.net^$important
@@|sparkcdnwus2.azureedge.net^$important
@@|speed.cloudflare.com^$important
@@|speed4.snap.net.nz.prod.hosts.ooklaserver.net^$important
@@|speedtest-syd.apac-tools.ovh.prod.hosts.ooklaserver.net^$important
@@|speedtest-syd.launtel.net.au.prod.hosts.ooklaserver.net^$important
@@|speedtest-syd.launtel.net.au^$important
@@|speedtest-syd.vocus.net.prod.hosts.ooklaserver.net^$important
@@|speedtest-syd.vocus.net^$important
@@|speedtest.net^$important
@@|speedtest.syd.netsg.net.au.prod.hosts.ooklaserver.net^$important
@@|speedtest.syd.netsg.net.au^$important
@@|sphinx.acast.com^$important
@@|sponsor.ajay.app^$important
@@|spoprod-a.akamaihd.net^$important
@@|squidblacklist.org^$important
@@|srv.au.ebayrtm.com^$important
@@|srv01.codefusion.technology^$important
@@|srv02.codefusion.technology^$important
@@|srv03.codefusion.technology^$important
@@|ss64.com^$important
@@|ssbv2dlsv13.sonicseedbox.com^$important
@@|ssl.reddit.com^$important
@@|st*.debrid.link^$important
@@|stackauth.com^$important
@@|stackexchange.com^$important
@@|stackoverflow.com^$important
@@|staging.plex.tv^$important
@@|standard-notes.s3.amazonaws.com^$important
@@|static*.behindthevoiceactors.com^$important
@@|static-assets-prod.unrealengine.com^$important
@@|static-cache.k2s.cc^$important
@@|static-cdn.jtvnw.net^$important
@@|static-dm.akamaized.net^$important
@@|static.adguard.com^$important
@@|static.alphacoders.com^$important
@@|static.cdn.prismic.io^$important
@@|static.depositfiles.com^$important
@@|static.freedownloadmanager.org^$important
@@|static.gigabyte.com^$important
@@|static.hsstatic.net^$important
@@|static.intercomassets.com^$important
@@|static.itch.io^$important
@@|static.kickstarter.com^$important
@@|static.klaviyo.com^$important
@@|static.kogan.com^$important
@@|static.moddb.com^$important
@@|static.opensuse.org^$important
@@|static.oracle.com^$important
@@|static.parastorage.com^$important
@@|static.seedr.cc^$important
@@|static.trafficjunky.com^$important
@@|static.wixstatic.com^$important
@@|static.zdassets.com^$important
@@|static0.audioboom.com^$important
@@|static1.makeuseofimages.com^$important
@@|static2.sharepointonline.com^$important
@@|staticcdn.duckduckgo.com^$important
@@|staticctf.akamaized.net^$important
@@|statics-marketingsites-eas-ms-com.akamaized.net^$important
@@|statics-marketingsites-eus-ms-com.akamaized.net^$important
@@|statics-marketingsites-wcus-ms-com.akamaized.net^$important
@@|statics-storeexp-eas-ms-com.akamaized.net^$important
@@|stats.appwork.org^$important
@@|status.inoreader.com^$important
@@|status.plex.tv^$important
@@|status.rapidssl.com^$important
@@|status.thawte.com^$important
@@|stitcher.acast.com^$important
@@|storage-asset.msi.com^$important
@@|store.acer.com^$important
@@|store.kaspersky.com^$important
@@|stream.radioparadise.com^$important
@@|streamlabs.com^$important
@@|style.sndcdn.com^$important
@@|styles.redditmedia.com^$important
@@|superuser.com^$important
@@|support.adaware.com^$important
@@|support.cloudflare.com^$important
@@|support.kaspersky.com^$important
@@|support2.kaspersky.com^$important
@@|sv.symcd.com^$important
@@|tags.tiqcdn.com^$important
@@|target.com^$important
@@|targetednotifications-tm.trafficmanager.net^$important
@@|telemetry.malwarebytes.com^$important
@@|tempm.com^$important
@@|theantisocialengineer.com^$important
@@|thecheese.co.nz^$important
@@|thecheese.ddns.net^$important
@@|thedragonfriends.com^$important
@@|theme-park.dev^$important
@@|theme.zdassets.com^$important
@@|thewindowsclub.com^$important
@@|threatcrowd.org^$important
@@|threats.kaspersky.com^$important
@@|thumbs.ebaystatic.com^$important
@@|thumbs.gfycat.com^$important
@@|thumbs1.ebaystatic.com^$important
@@|time.android.com^$important
@@|time.is^$important
@@|tokens-auth.touchtype-fluency.com^$important
@@|torlock.com^$important
@@|torren.eu^$important
@@|tpucdn.com^$important
@@|tr11v6.os.eidos.com^$important
@@|tr2.os.eidos.com^$important
@@|tracker.bitsearch.to^$important
@@|tracker.coppersurfer.tk^$important
@@|tracker.cyberia.is^$important
@@|tracker.dler.com^$important
@@|tracker.grepler.com^$important
@@|tracker.imgoingto.icu^$important
@@|tracker.leechers-paradise.org^$important
@@|tracker.moeking.me^$important
@@|tracker.open-internet.nl^$important
@@|tracker.openbittorrent.com^$important
@@|tracker.opentrackr.org^$important
@@|tracker.pirateparty.gr^$important
@@|tracker.tiny-vps.com^$important
@@|tracker.torrent.eu.org^$important
@@|tracker.trackerfix.com^$important
@@|tracker2.itzmx.com^$important
@@|tracker4.itzmx.com^$important
@@|trackerfix.com^$important
@@|ts-crl.ws.symantec.com^$important
@@|ts-ocsp.ws.symantec.com^$important
@@|turn-mcc.trafficmanager.net^$important
@@|turn-mcc01.trafficmanager.net^$important
@@|twemoji.maxcdn.com^$important
@@|u6571834.ct.sendgrid.net^$important
@@|udomain.dl.sourceforge.net^$important
@@|uhfportal.azurewebsites.net^$important
@@|ul.mediafireuserupload.com^$important
@@|ul.to^$important
@@|unsplash.com^$important
@@|up*.debrid.link^$important
@@|up.raindrop.io^$important
@@|update*.oo-software.com^$important
@@|update.appwork.org^$important
@@|update.bitsum.com^$important
@@|update.cyberduck.io^$important
@@|update.dziemborowicz.com^$important
@@|update.eset.com^$important
@@|update.filezilla-project.org^$important
@@|update.videolan.org^$important
@@|update.vivaldi.com^$important
@@|updates.dziemborowicz.com^$important
@@|updates.macrium.com^$important
@@|updates.superantispyware.com^$important
@@|updatesnl.macrium.com^$important
@@|upgr-mmxx-cl-ts.2d8cd.cdn.bitdefender.net^$important
@@|uploaded.net^$important
@@|uptostream.com^$important
@@|upx.sourceforge.net^$important
@@|use.fontawesome.com^$important
@@|use.typekit.net^$important
@@|usenet.agency^$important
@@|usenet.farm^$important
@@|userscripts.adtidy.org^$important
@@|userstyles.org^$important
@@|userstyles.world^$important
@@|usher.ttvnw.net^$important
@@|v.firebog.net^$important
@@|v0.wordpress.com^$important
@@|version.cyberduck.io^$important