Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/BBerastegui/fresh-dns-servers
Fresh DNS servers
https://github.com/BBerastegui/fresh-dns-servers
Last synced: about 2 months ago
JSON representation
Fresh DNS servers
- Host: GitHub
- URL: https://github.com/BBerastegui/fresh-dns-servers
- Owner: BBerastegui
- Created: 2019-10-23T20:35:28.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2024-10-30T03:51:59.000Z (3 months ago)
- Last Synced: 2024-10-30T06:26:28.871Z (3 months ago)
- Size: 81.4 MB
- Stars: 84
- Watchers: 8
- Forks: 11
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- awesome-hacking-lists - BBerastegui/fresh-dns-servers - Fresh DNS servers (Others)
README
# Automatically refreshed list of DNS resolvers
Thanks to: [@covuworie](https://github.com/covuworie) for the feedback and improvement suggestions!
I set up an scheduled task in Google Cloud that automatically launches ~https://github.com/teknogeek/fresh.py~ ~https://github.com/vortexau/dnsvalidator~ https://github.com/frost19k/DNSValidator.git on a Github action every ~24h~ 48h posts the updated resolvers.txt list to this repository.
I'm currently pulling and running through dnsvalidator the following lists (open to add more :D):
- https://public-dns.info/nameservers-all.txt
- https://raw.githubusercontent.com/blechschmidt/massdns/master/lists/resolvers.txtSo if nothing goes wrong, we are supposed to get a list of reliable DNS servers in this repo.
So you could so something like:
```bash
./bin/massdns -r <(curl -s https://raw.githubusercontent.com/BBerastegui/fresh-dns-servers/master/resolvers.txt) ...
```Or
```bash
cat domains.txt \
| zdns ANY \
--name-servers <(curl -s https://raw.githubusercontent.com/BBerastegui/fresh-dns-servers/master/resolvers.csv | sed -e 's/,/:53,/g' | sed -e 's/$/:53/')
```Or whatever you want.
Disclaimer: I know that the .csv file is not a "proper" csv, but it fits the zdns format :)
Let's see if this works!