fix: Use updated HSD for DNSSEC validation
All checks were successful
Build Docker / BuildImage (push) Successful in 34s

This commit is contained in:
2025-02-26 16:10:31 +11:00
parent 1c7093307a
commit 07daad516f
3 changed files with 3 additions and 2 deletions

View File

@@ -163,7 +163,7 @@ def check_ssl(domain: str):
def validate_dnssec(domain):
# Pick a random resolver
resolverIP = random.choice(resolver.nameservers)
resolverIP = resolver.nameservers[0]
# delv @194.50.5.28 -a hsd-ksk nathan.woodburn A +rtrace +vtrace
command = f"delv @{resolverIP} -a hsd-ksk {domain} A +rtrace +vtrace"
result = subprocess.run(command, shell=True, capture_output=True, text=True)