Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Python script to fetch public IPv4 DNS servers with high reliability #96

Merged
merged 1 commit into from
Jan 11, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
25 changes: 25 additions & 0 deletions scripts/get-resolvers.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
#!/usr/bin/env python3

import os
import requests
import validators
import json

NAMESERVERS_URL='https://public-dns.info/nameserver/nameservers.json'
OUTPUT_FILE=os.path.dirname(os.path.realpath(__file__)) + "/../lists/public-dns.txt"
MIN_RELIABILIY=0.99

try:

# Try to open output file for writing
with open(OUTPUT_FILE, 'w') as f:
# Fetch public servers
r = requests.get(NAMESERVERS_URL)
for ip in json.loads(r.text):
# Only focus on reliable ipv4 addresses
if validators.ipv4(ip['ip']) and ip['reliability'] > MIN_RELIABILIY:
# Write results
f.write("%s\n" % ip['ip'])

except Exception as e:
print("Error.")