Audits domain SPF, DKIM, DMARC DNS records using dnspython to verify email authentication configs. Validates syntax, selectors, policies; flags spoofing risks; suggests fixes.
npx claudepluginhub killvxk/cybersecurity-skills-zhThis skill uses the workspace's default tool permissions.
1. 安装依赖:`pip install dnspython checkdmarc`
Implements SPF, DKIM, and DMARC email authentication via DNS records, key generation, and audits to prevent spoofing and phishing attacks.
Implements SPF, DKIM, and DMARC email authentication via DNS TXT records, bash audits, key generation, and Python report parsing to prevent phishing and spoofing.
Guides implementing SPF, DKIM, and DMARC email authentication protocols to prevent spoofing and phishing. Covers DNS TXT records, OpenSSL key generation, dig audits, and server configs.
Share bugs, ideas, or general feedback.
pip install dnspython checkdmarcpython scripts/agent.py --domain example.com --output email_security_report.json
Domain: example.com
SPF: v=spf1 include:_spf.google.com ~all (WARN: softfail allows spoofing)
DKIM: selector1 OK, selector2 OK
DMARC: v=DMARC1; p=none; rua=mailto:dmarc@example.com (WARN: policy=none, no enforcement)
Risk: HIGH - p=none with ~all allows email spoofing