├── .github └── ISSUE_TEMPLATE │ ├── bug_report.yaml │ └── config.yml ├── .gitignore ├── LICENSE ├── Listas ├── Amazon │ ├── all │ ├── all.ipv6 │ └── all_adguard.easylist ├── Apple │ ├── all │ ├── all.ipv6 │ └── all_adguard.easylist ├── Cloudflare │ ├── all │ ├── all.ipv6 │ └── all_adguard.easylist ├── Facebook │ ├── all │ ├── all-but-whatsapp │ ├── all-but-whatsapp.ipv6 │ ├── all.ipv6 │ ├── all_adguard-but-whatsapp.easylist │ ├── all_adguard.easylist │ ├── instagram │ ├── instagram.ipv6 │ ├── instagram_adguard.easylist │ ├── whatsapp │ ├── whatsapp.ipv6 │ └── whatsapp_adguard.easylist ├── Gambling │ └── Gambling.txt ├── Google │ ├── README.md │ ├── all │ ├── all.ipv6 │ ├── all_adguard.easylist │ ├── localized │ ├── localized.ipv6 │ ├── localized_adguard.easylist │ ├── non_localized │ ├── non_localized.ipv6 │ ├── non_localized_adguard.easylist │ ├── youtube │ ├── youtube.ipv6 │ ├── youtube_adguard.easylist │ └── youtube_ads ├── Microsoft │ ├── WindowsSpy.txt │ ├── all │ ├── all.ipv6 │ ├── all_adguard.easylist │ ├── linkedin │ ├── linkedin.ipv6 │ └── linkedin_adguard.easylist ├── Mozilla │ ├── all │ ├── all.ipv6 │ └── all_adguard.easylist ├── Pinterest │ ├── all │ ├── all.ipv6 │ └── all_adguard.easylist ├── Testing │ ├── Customized-blocking-list.txt │ ├── android-tracking.txt │ ├── blocklistnew.txt │ └── openlist.txt ├── Twitter │ ├── all │ ├── all.ipv6 │ └── all_adguard.easylist ├── VideoGamesAdiction │ └── VideoGamesAdiction.txt ├── blocklist.txt └── whitelist.txt ├── README.md ├── assets ├── AdGuard_Logo.png ├── adguard_home_lightmode.svg ├── get-github.png ├── get_google_play.png └── pihole.png └── docs ├── CODE_OF_CONDUCT.md ├── README-ES.md ├── SECURITY.md ├── create-csr.md └── example.org.conf /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/LICENSE -------------------------------------------------------------------------------- /Listas/Amazon/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Amazon/all -------------------------------------------------------------------------------- /Listas/Amazon/all.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Amazon/all.ipv6 -------------------------------------------------------------------------------- /Listas/Amazon/all_adguard.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Amazon/all_adguard.easylist -------------------------------------------------------------------------------- /Listas/Apple/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Apple/all -------------------------------------------------------------------------------- /Listas/Apple/all.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Apple/all.ipv6 -------------------------------------------------------------------------------- /Listas/Apple/all_adguard.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Apple/all_adguard.easylist -------------------------------------------------------------------------------- /Listas/Cloudflare/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Cloudflare/all -------------------------------------------------------------------------------- /Listas/Cloudflare/all.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Cloudflare/all.ipv6 -------------------------------------------------------------------------------- /Listas/Cloudflare/all_adguard.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Cloudflare/all_adguard.easylist -------------------------------------------------------------------------------- /Listas/Facebook/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Facebook/all -------------------------------------------------------------------------------- /Listas/Facebook/all-but-whatsapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Facebook/all-but-whatsapp -------------------------------------------------------------------------------- /Listas/Facebook/all-but-whatsapp.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Facebook/all-but-whatsapp.ipv6 -------------------------------------------------------------------------------- /Listas/Facebook/all.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Facebook/all.ipv6 -------------------------------------------------------------------------------- /Listas/Facebook/all_adguard-but-whatsapp.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Facebook/all_adguard-but-whatsapp.easylist -------------------------------------------------------------------------------- /Listas/Facebook/all_adguard.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Facebook/all_adguard.easylist -------------------------------------------------------------------------------- /Listas/Facebook/instagram: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Facebook/instagram -------------------------------------------------------------------------------- /Listas/Facebook/instagram.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Facebook/instagram.ipv6 -------------------------------------------------------------------------------- /Listas/Facebook/instagram_adguard.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Facebook/instagram_adguard.easylist -------------------------------------------------------------------------------- /Listas/Facebook/whatsapp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Facebook/whatsapp -------------------------------------------------------------------------------- /Listas/Facebook/whatsapp.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Facebook/whatsapp.ipv6 -------------------------------------------------------------------------------- /Listas/Facebook/whatsapp_adguard.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Facebook/whatsapp_adguard.easylist -------------------------------------------------------------------------------- /Listas/Gambling/Gambling.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Gambling/Gambling.txt -------------------------------------------------------------------------------- /Listas/Google/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Google/README.md -------------------------------------------------------------------------------- /Listas/Google/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Google/all -------------------------------------------------------------------------------- /Listas/Google/all.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Google/all.ipv6 -------------------------------------------------------------------------------- /Listas/Google/all_adguard.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Google/all_adguard.easylist -------------------------------------------------------------------------------- /Listas/Google/localized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Google/localized -------------------------------------------------------------------------------- /Listas/Google/localized.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Google/localized.ipv6 -------------------------------------------------------------------------------- /Listas/Google/localized_adguard.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Google/localized_adguard.easylist -------------------------------------------------------------------------------- /Listas/Google/non_localized: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Google/non_localized -------------------------------------------------------------------------------- /Listas/Google/non_localized.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Google/non_localized.ipv6 -------------------------------------------------------------------------------- /Listas/Google/non_localized_adguard.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Google/non_localized_adguard.easylist -------------------------------------------------------------------------------- /Listas/Google/youtube: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Google/youtube -------------------------------------------------------------------------------- /Listas/Google/youtube.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Google/youtube.ipv6 -------------------------------------------------------------------------------- /Listas/Google/youtube_adguard.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Google/youtube_adguard.easylist -------------------------------------------------------------------------------- /Listas/Google/youtube_ads: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Google/youtube_ads -------------------------------------------------------------------------------- /Listas/Microsoft/WindowsSpy.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Microsoft/WindowsSpy.txt -------------------------------------------------------------------------------- /Listas/Microsoft/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Microsoft/all -------------------------------------------------------------------------------- /Listas/Microsoft/all.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Microsoft/all.ipv6 -------------------------------------------------------------------------------- /Listas/Microsoft/all_adguard.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Microsoft/all_adguard.easylist -------------------------------------------------------------------------------- /Listas/Microsoft/linkedin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Microsoft/linkedin -------------------------------------------------------------------------------- /Listas/Microsoft/linkedin.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Microsoft/linkedin.ipv6 -------------------------------------------------------------------------------- /Listas/Microsoft/linkedin_adguard.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Microsoft/linkedin_adguard.easylist -------------------------------------------------------------------------------- /Listas/Mozilla/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Mozilla/all -------------------------------------------------------------------------------- /Listas/Mozilla/all.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Mozilla/all.ipv6 -------------------------------------------------------------------------------- /Listas/Mozilla/all_adguard.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Mozilla/all_adguard.easylist -------------------------------------------------------------------------------- /Listas/Pinterest/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Pinterest/all -------------------------------------------------------------------------------- /Listas/Pinterest/all.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Pinterest/all.ipv6 -------------------------------------------------------------------------------- /Listas/Pinterest/all_adguard.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Pinterest/all_adguard.easylist -------------------------------------------------------------------------------- /Listas/Testing/Customized-blocking-list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Testing/Customized-blocking-list.txt -------------------------------------------------------------------------------- /Listas/Testing/android-tracking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Testing/android-tracking.txt -------------------------------------------------------------------------------- /Listas/Testing/blocklistnew.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Testing/blocklistnew.txt -------------------------------------------------------------------------------- /Listas/Testing/openlist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Testing/openlist.txt -------------------------------------------------------------------------------- /Listas/Twitter/all: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Twitter/all -------------------------------------------------------------------------------- /Listas/Twitter/all.ipv6: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Twitter/all.ipv6 -------------------------------------------------------------------------------- /Listas/Twitter/all_adguard.easylist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/Twitter/all_adguard.easylist -------------------------------------------------------------------------------- /Listas/VideoGamesAdiction/VideoGamesAdiction.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/VideoGamesAdiction/VideoGamesAdiction.txt -------------------------------------------------------------------------------- /Listas/blocklist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/blocklist.txt -------------------------------------------------------------------------------- /Listas/whitelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/Listas/whitelist.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/README.md -------------------------------------------------------------------------------- /assets/AdGuard_Logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/assets/AdGuard_Logo.png -------------------------------------------------------------------------------- /assets/adguard_home_lightmode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/assets/adguard_home_lightmode.svg -------------------------------------------------------------------------------- /assets/get-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/assets/get-github.png -------------------------------------------------------------------------------- /assets/get_google_play.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/assets/get_google_play.png -------------------------------------------------------------------------------- /assets/pihole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/assets/pihole.png -------------------------------------------------------------------------------- /docs/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/docs/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /docs/README-ES.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/docs/README-ES.md -------------------------------------------------------------------------------- /docs/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/docs/SECURITY.md -------------------------------------------------------------------------------- /docs/create-csr.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/docs/create-csr.md -------------------------------------------------------------------------------- /docs/example.org.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juanico10/SecureDNS/HEAD/docs/example.org.conf --------------------------------------------------------------------------------