Email & DNS Security Checker
Check a domain's email-authentication posture โ SPF, DMARC, DKIM, MX โ to spot spoofing and phishing risk.
๐ก๏ธ Read-only & safe: this queries public DNS records only (via DNS-over-HTTPS). It performs no scanning or intrusion โ the same lookups any mail server makes.
github.comcloudflare.comwikipedia.orggov.uk
0%
โ
Email-security posture for
Email-security posture for
What these records do (and how to fix gaps)
- SPF (
TXT v=spf1 โฆ) โ lists who may send mail for your domain. End with-allto hard-fail spoofers. - DMARC (
_dmarc TXT v=DMARC1; p=reject) โ tells receivers what to do with mail that fails SPF/DKIM, and where to send reports.p=rejectis strongest; start atp=noneto monitor. - DKIM โ cryptographically signs outgoing mail. Selectors vary per provider, so absence here isn't conclusive.
- MX โ your mail servers. Present means the domain receives email.
- Security headers (for web apps): set
Content-Security-Policy,Strict-Transport-Security,X-Content-Type-Options: nosniff,X-Frame-Options: DENY, and a strictReferrer-Policy. (Header checks need a server-side fetch โ see the proxy in this project.)