SuperTool — Security Diagnostics
Full-spectrum scan: DNS · SSL · Email · PQC · Reputation · 18+ automated tests
Ready to scan
Enter any domain to run 18+ automated security checks covering DNS, SSL, email, PQC readiness and reputation.
The EP Cybertools SuperTool executes 18+ parallel security checks against any domain or IP address and returns a consolidated security score. Designed for network administrators, security engineers, DevOps teams, and IT auditors.
DNS Health
A/AAAA records, NS delegation, SOA validity, and wildcard checks.
Email Authentication
SPF syntax, DKIM key publication, DMARC policy strictness.
SSL/TLS Certificate
Validity period, issuer chain, SANs, key algorithm, CT log inclusion.
Cipher Suite & Protocol
TLS versions, weak ciphers (RC4, DES, 3DES), deprecated protocols.
HTTP Security Headers
CSP, X-Frame-Options, X-Content-Type-Options, HSTS, Referrer-Policy.
CAA Records
Certificate Authority Authorization records — restricts who can issue certs.
DNSSEC
Signing status, DS/DNSKEY match, RRSIG validity.
Blacklist & Reputation
15+ DNSBL lists: Spamhaus ZEN, SpamCop, Barracuda, SURBL.
Post-Quantum Readiness
TLS key exchange algorithms and hybrid PQC support indicators.
# Run a full security scan via API
curl -s -X POST https://epcybertools.com/api/supertool \
-H "Content-Type: application/json" \
-d '{"target":"yourdomain.com"}' | python3 -m json.tool
# CI/CD: Fail pipeline if score < 80
SCORE=$(curl -s -X POST https://epcybertools.com/api/supertool \
-H "Content-Type: application/json" \
-d '{"target":"yourdomain.com"}' | python3 -c "import sys,json; print(json.load(sys.stdin)['data']['score'])")
[ "$SCORE" -lt 80 ] && echo "Security score $SCORE below threshold" && exit 1