-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Pull request 1163 safesearch package vol.1
Merge in DNS/adguard-home from 1163-safesearch-1-1 to master Squashed commit of the following: commit ccc8393 Merge: 7d3901b 6b265c6 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Tue Mar 7 21:36:24 2023 +0700 Merge remote-tracking branch 'origin/master' into 1163-safesearch-1-1 commit 7d3901b Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Sat Mar 4 10:15:18 2023 +0700 all: safesearch imp code commit 94a50dc Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Fri Mar 3 13:22:41 2023 +0700 safesearch: imp code commit aa6e30f Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Wed Mar 1 21:43:28 2023 +0700 safesearch: imp code commit 30e75b6 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Wed Mar 1 21:38:14 2023 +0700 safesearch: imp code commit 7d95ec7 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Wed Mar 1 21:24:49 2023 +0700 safesearch: imp code commit d6c0a0f Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Wed Mar 1 21:04:53 2023 +0700 safesearch: imp code commit fa179b7 Merge: 7a43ca0 012e5be Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Wed Mar 1 20:52:01 2023 +0700 Merge remote-tracking branch 'origin/master' into 1163-safesearch-1-1 commit 7a43ca0 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Wed Mar 1 11:59:35 2023 +0700 safesearch: embed rules commit 2b1a83d Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Wed Mar 1 11:50:29 2023 +0700 safesearch: imp code commit 400d463 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Wed Mar 1 11:30:57 2023 +0700 safesearch: imp code commit 60cce36 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Wed Mar 1 11:16:56 2023 +0700 all: imp code commit 4eee323 Author: Dimitry Kolyshev <dkolyshev@adguard.com> Date: Tue Feb 28 23:26:17 2023 +0700 all: safesearch package
- Loading branch information
Showing
10 changed files
with
787 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
package safesearch | ||
|
||
import _ "embed" | ||
|
||
//go:embed rules/bing.txt | ||
var bing string | ||
|
||
//go:embed rules/google.txt | ||
var google string | ||
|
||
//go:embed rules/pixabay.txt | ||
var pixabay string | ||
|
||
//go:embed rules/duckduckgo.txt | ||
var duckduckgo string | ||
|
||
//go:embed rules/yandex.txt | ||
var yandex string | ||
|
||
//go:embed rules/youtube.txt | ||
var youtube string | ||
|
||
// safeSearchRules is a map with rules texts grouped by search providers. | ||
// Source rules downloaded from: | ||
// https://adguardteam.github.io/HostlistsRegistry/assets/engines_safe_search.txt, | ||
// https://adguardteam.github.io/HostlistsRegistry/assets/youtube_safe_search.txt. | ||
var safeSearchRules = map[Service]string{ | ||
Bing: bing, | ||
DuckDuckGo: duckduckgo, | ||
Google: google, | ||
Pixabay: pixabay, | ||
Yandex: yandex, | ||
YouTube: youtube, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|www.bing.com^$dnsrewrite=NOERROR;CNAME;strict.bing.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
|duckduckgo.com^$dnsrewrite=NOERROR;CNAME;safe.duckduckgo.com | ||
|start.duckduckgo.com^$dnsrewrite=NOERROR;CNAME;safe.duckduckgo.com | ||
|www.duckduckgo.com^$dnsrewrite=NOERROR;CNAME;safe.duckduckgo.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,191 @@ | ||
|www.google.ad^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ae^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.al^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.am^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.as^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.at^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.az^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ba^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.be^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.bf^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.bg^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.bi^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.bj^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.bs^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.bt^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.by^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ca^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.cat^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.cd^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.cf^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.cg^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ch^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ci^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.cl^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.cm^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.cn^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.ao^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.bw^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.ck^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.cr^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.id^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.il^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.in^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.jp^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.ke^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.kr^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.ls^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.ma^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.mz^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.nz^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.th^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.tz^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.ug^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.uk^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.uz^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.ve^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.co.vi^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.af^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.ag^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.ai^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.ar^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.au^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.bd^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.bh^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.bn^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.bo^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.br^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.bz^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.co^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.cu^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.cy^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.do^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.ec^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.eg^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.et^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.fj^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.gh^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.gi^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.gt^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.hk^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.jm^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.kh^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.kw^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.lb^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.ly^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.mm^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.mt^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.mx^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.my^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.na^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.nf^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.ng^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.ni^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.np^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.om^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.pa^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.pe^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.pg^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.ph^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.pk^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.pr^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.py^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.qa^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.sa^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.sb^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.sg^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.sl^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.sv^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.tj^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.tr^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.tw^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.ua^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.uy^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.vc^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com.vn^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.com^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.cv^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.cz^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.de^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.dj^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.dk^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.dm^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.dz^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ee^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.es^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.fi^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.fm^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.fr^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ga^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ge^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.gg^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.gl^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.gm^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.gp^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.gr^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.gy^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.hn^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.hr^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ht^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.hu^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ie^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.im^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.iq^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.is^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.it^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.je^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.jo^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.kg^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ki^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.kz^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.la^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.li^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.lk^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.lt^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.lu^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.lv^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.md^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.me^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.mg^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.mk^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ml^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.mn^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ms^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.mu^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.mv^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.mw^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ne^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.nl^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.no^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.nr^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.nu^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.pl^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.pn^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ps^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.pt^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ro^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.rs^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ru^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.rw^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.sc^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.se^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.sh^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.si^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.sk^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.sm^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.sn^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.so^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.sr^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.st^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.td^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.tg^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.tk^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.tl^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.tm^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.tn^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.to^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.tt^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.vg^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.vu^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com | ||
|www.google.ws^$dnsrewrite=NOERROR;CNAME;forcesafesearch.google.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|pixabay.com^$dnsrewrite=NOERROR;CNAME;safesearch.pixabay.com |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
|www.xn--d1acpjx3f.xn--p1ai^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.ya.ru^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.az^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.by^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.co.il^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.com.am^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.com.ge^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.com.ru^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.com.tr^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.com^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.de^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.ee^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.eu^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.fi^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.fr^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.kz^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.lt^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.lv^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.md^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.net^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.org^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.pl^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.ru^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.tj^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.tm^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|www.yandex.uz^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|xn--d1acpjx3f.xn--p1ai^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|ya.ru^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.az^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.by^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.co.il^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.com.am^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.com.ge^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.com.ru^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.com.tr^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.com^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.de^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.ee^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.eu^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.fi^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.fr^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.kz^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.lt^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.lv^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.md^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.net^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.org^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.pl^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.ru^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.tj^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.tm^$dnsrewrite=NOERROR;A;213.180.193.56 | ||
|yandex.uz^$dnsrewrite=NOERROR;A;213.180.193.56 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
|www.youtube.com^$dnsrewrite=NOERROR;CNAME;restrictmoderate.youtube.com | ||
|m.youtube.com^$dnsrewrite=NOERROR;CNAME;restrictmoderate.youtube.com | ||
|youtubei.googleapis.com^$dnsrewrite=NOERROR;CNAME;restrictmoderate.youtube.com | ||
|youtube.googleapis.com^$dnsrewrite=NOERROR;CNAME;restrictmoderate.youtube.com | ||
|www.youtube-nocookie.com^$dnsrewrite=NOERROR;CNAME;restrictmoderate.youtube.com |
Oops, something went wrong.