├── .gitattributes ├── .github ├── CONTRIBUTING.md ├── ISSUE_TEMPLATE └── config.yml ├── .gitignore ├── LICENSE ├── README.md └── hosts-files ├── dnscrypt-proxy-cloaking-no-sni-rst.txt ├── dnscrypt-proxy-cloaking.txt ├── dnsmasq-no-sni-rst.conf ├── dnsmasq.conf ├── hosts ├── hosts-compact ├── hosts-compact-no-sni-rst ├── hosts-no-sni-rst ├── hosts-no-sni-rst.rsc ├── hosts.rsc ├── surge-no-sni-rst.conf └── surge.conf /.gitattributes: -------------------------------------------------------------------------------- 1 | *.rsc linguist-vendored 2 | -------------------------------------------------------------------------------- /.github/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/.github/CONTRIBUTING.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/.github/ISSUE_TEMPLATE -------------------------------------------------------------------------------- /.github/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/.github/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | output/ 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/README.md -------------------------------------------------------------------------------- /hosts-files/dnscrypt-proxy-cloaking-no-sni-rst.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/hosts-files/dnscrypt-proxy-cloaking-no-sni-rst.txt -------------------------------------------------------------------------------- /hosts-files/dnscrypt-proxy-cloaking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/hosts-files/dnscrypt-proxy-cloaking.txt -------------------------------------------------------------------------------- /hosts-files/dnsmasq-no-sni-rst.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/hosts-files/dnsmasq-no-sni-rst.conf -------------------------------------------------------------------------------- /hosts-files/dnsmasq.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/hosts-files/dnsmasq.conf -------------------------------------------------------------------------------- /hosts-files/hosts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/hosts-files/hosts -------------------------------------------------------------------------------- /hosts-files/hosts-compact: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/hosts-files/hosts-compact -------------------------------------------------------------------------------- /hosts-files/hosts-compact-no-sni-rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/hosts-files/hosts-compact-no-sni-rst -------------------------------------------------------------------------------- /hosts-files/hosts-no-sni-rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/hosts-files/hosts-no-sni-rst -------------------------------------------------------------------------------- /hosts-files/hosts-no-sni-rst.rsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/hosts-files/hosts-no-sni-rst.rsc -------------------------------------------------------------------------------- /hosts-files/hosts.rsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/hosts-files/hosts.rsc -------------------------------------------------------------------------------- /hosts-files/surge-no-sni-rst.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/hosts-files/surge-no-sni-rst.conf -------------------------------------------------------------------------------- /hosts-files/surge.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/googlehosts/hosts/HEAD/hosts-files/surge.conf --------------------------------------------------------------------------------