New: Post-Quantum Cryptography tools — is your domain quantum-safe? Check now
All-in-One Scanner 18+ Security Tests 🆓 Free

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.

Email: SPF, DKIM, DMARC
SSL + cipher + expiry
DNS health + DNSSEC
PQC readiness score
Blacklist + reputation
HSTS + redirect check
About the SuperTool

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.

Using the SuperTool via API
# 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