Skip to content

Commit

Permalink
revert want_dnssec change
Browse files Browse the repository at this point in the history
  • Loading branch information
seanthegeek committed Jan 11, 2024
1 parent dd645fa commit 2636852
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions checkdmarc/dnssec.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,8 +58,7 @@ def get_dnskey(domain: str, nameservers: list[str] = None,

logging.debug(f"Checking for DNSKEY records at {domain}")
request = dns.message.make_query(domain,
dns.rdatatype.DNSKEY,
want_dnssec=True)
dns.rdatatype.DNSKEY)
for nameserver in nameservers:
try:
response = dns.query.udp(request, nameserver, timeout=timeout)
Expand Down

0 comments on commit 2636852

Please sign in to comment.