From 094050288d7d1710905b392354febb337dafab04 Mon Sep 17 00:00:00 2001 From: Rian Kelly Date: Fri, 20 Mar 2026 19:54:48 +0000 Subject: [PATCH] Update default resolver source to publicdns.info Replace stale public-dns.info/nameservers.txt URL with actively maintained publicdns-resolvers list from publicdns.info. The old source (public-dns.info, powered by corny/dnscheck) has been dormant for years. The new source probes 90,000+ resolvers every 72 hours. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 7f70486..9e5d780 100644 --- a/README.md +++ b/README.md @@ -45,7 +45,7 @@ Dependencies will then be installed and DNS Validator will be added to your path ## CLI: ```bash -$ dnsvalidator -tL https://public-dns.info/nameservers.txt -threads 20 -o resolvers.txt +$ dnsvalidator -tL https://raw.githubusercontent.com/riankellyjn-a11y/publicdns-resolvers/main/nameservers.txt -threads 20 -o resolvers.txt ``` ## Docker: @@ -59,7 +59,7 @@ $ docker build -t dnsvalidator . Run: ```bash -$ docker run -v $(pwd):/dnsvalidator/output -t dnsvalidator -tL https://public-dns.info/nameservers.txt -threads 20 -o /dnsvalidator/output/resolvers.txt +$ docker run -v $(pwd):/dnsvalidator/output -t dnsvalidator -tL https://raw.githubusercontent.com/riankellyjn-a11y/publicdns-resolvers/main/nameservers.txt -threads 20 -o /dnsvalidator/output/resolvers.txt ``` # Caveats