Create mx_record_extractor.py

This commit is contained in:
Omar Santos 2023-09-10 16:05:37 -04:00 committed by GitHub
parent 27e4851237
commit cfbd3ae18c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -0,0 +1,16 @@
import dns.resolver
def get_mx_record(domain):
try:
result = dns.resolver.resolve(domain, 'MX')
for rdata in result:
print(f'MX Record: {rdata.exchange.to_text()} with priority {rdata.preference}')
except dns.resolver.NoAnswer:
print(f"No MX records found for domain {domain}")
except dns.resolver.NXDOMAIN:
print(f"The domain {domain} does not exist")
except Exception as e:
print(f"An error occurred: {e}")
# Replace 'websploit.org' with the domain you are interested in
get_mx_record('websploit.org')