LIVE · NO ACCOUNT REQUIRED

Domain Trust Scanner — Live SSL, DNS, Email & Security Report

Drop any domain into the scanner and get a live composite trust score across SSL validity, DNS integrity, domain expiry, email authentication and HTTP security headers. Every check runs against a real probe — no cached PageSpeed snapshot, no simulated grade. First scan completes in under a minute. Every domain is monitored continuously afterward, so the report stays live between visits.

01 · OVERVIEW

What the Domain Trust Scanner returns

A single scan runs six independent probes against a domain, rolls each dimension up into a weighted composite, and grades the domain A through F. The report is designed as the master entry point into the DomainScan platform — every capability the score reflects is also available as a standalone tool if you want to drill deeper.

Composite trust score (0–100) (Score)

Weighted average across five dimensions. Every domain is graded on the same scale so scores are directly comparable across your portfolio, competitors, or vendor list.

Grade letter (A–F) (Grade)

Score bands roll up into a familiar A–F letter grade. A ≥ 90, B ≥ 75, C ≥ 60, D ≥ 40, otherwise F. Instant visual verdict without reading numbers.

Sub-score breakdown (Detail)

Per-dimension scores with status (ok / warn / crit) and a plain-language hint on what to fix. Bad SSL surfaces certificate expiry, missing DMARC prompts a policy fix, absent CSP suggests a header set.

Continuous change events (Monitoring)

Every re-scan diffs against the previous snapshot. Cert renewals, DMARC policy changes, header removals, DNS record edits become severity-tagged events on the timeline.

Domain intelligence card (Meta)

Primary IP, nameservers, SSL issuer + expiry, registrar, domain expiry, DMARC policy, SPF record presence. The 30-second read on how the domain is set up.

Embeddable trust badge (Badge)

Every scanned domain gets a live SVG trust badge you can drop into your footer, README, or SaaS marketplace listing. Auto-refreshes as the score changes — no redeploys on your end.

02 · METHODOLOGY

How the composite trust score is calculated

The composite is a weighted average across five independent dimensions. Each dimension runs on its own cadence, is scored on its own 0–100 scale, then rolled up into the single composite number. Every weight is fixed and public — no proprietary black-box scoring.

  • SSL Certificate — 25% weight Live TLS handshake. Certificate validity window, days-to-expiry, issuer trust, chain completeness, key strength. Cert with more than 90 days runway scores 100; under 30 days is warn; expired is crit.
  • DNS Health — 20% weight Authoritative resolution across A, AAAA, MX, NS records. Presence of A + MX earns 100, A only earns 85, missing everything drops to crit. Cross-referenced with nameserver agreement.
  • Domain Expiry — 20% weight Registrar renewal runway from RDAP or WHOIS. Same scale as SSL — >90 days is ok, sliding warn under 90, crit under 30. Zero when the domain has already lapsed.
  • Email Authentication — 20% weight SPF, DMARC and DKIM posture combined. Full 100 with SPF present + DMARC reject/quarantine + DKIM signature. Partial credit as each layer weakens or drops out. Zero means the domain is spoofable.
  • Security Headers — 15% weight HTTP response header audit — CSP, HSTS, X-Frame-Options, Referrer-Policy, X-Content-Type-Options. Graded A+ through F, mapped to a numeric score. Missing headers are named individually with the exact policy you should ship.
Composite formula
const WEIGHTS = { ssl: 0.25, exp: 0.20, dns: 0.20, email: 0.20, hdr: 0.15 };

function composite(subScores) {
  let weightedSum = 0;
  let totalWeight = 0;
  for (const [cap, w] of Object.entries(WEIGHTS)) {
    const s = subScores[cap];
    if (s && s.status !== 'unknown') {
      weightedSum += s.score * w;
      totalWeight += w;
    }
  }
  return totalWeight === 0 ? 0 : Math.round(weightedSum / totalWeight);
}

function gradeFromScore(score) {
  if (score >= 90) return 'A';
  if (score >= 75) return 'B';
  if (score >= 60) return 'C';
  if (score >= 40) return 'D';
  return 'F';
}
03 · MONITORING

Continuous monitoring cadence

Every domain scanned enters the monitoring engine. Re-checks run on a staggered schedule — volatile signals faster, stable signals slower — so we hit registries and certificate authorities lightly while still catching drift within hours.

  • DNS resolution — every 1 hour Fastest-moving signal. A / AAAA / MX / NS records change with deploys, load balancer failovers, and email provider swaps. Hourly cadence catches propagation within one TTL cycle.
  • SSL / TLS certificate — every 6 hours Renewals from Let's Encrypt (90-day) or ACME automations (typically 45–60 day) get picked up within a quarter-day. Manual cert swaps at DigiCert / GTS scale are caught same-day.
  • Email authentication — every 6 hours SPF/DKIM/DMARC changes ripple within hours of any DNS TXT edit. Same cadence as SSL because both are high-impact security signals.
  • Security headers — every 12 hours Header policy shifts less often than transport or auth — twice-daily fetch keeps the audit fresh without hammering the origin.
  • WHOIS / registrar data — every 24 hours Registrar and expiry data update slowly and rate-limit heavily. Daily cadence is deliberate; anything more aggressive would trigger blocks at Verisign, MarkMonitor, and other high-volume registries.
04 · GRADES

What each grade means for your domain

Grades map score bands to a five-letter scale. The scoring gradient is deliberately non-linear — the score curve rewards well-configured domains and penalizes real security gaps proportionally to their exploitability.

  • Grade A (≥ 90) — Production-grade SSL healthy with runway, DNS complete with MX + A, DMARC at reject or quarantine, security headers A/A+. Domain is publicly indistinguishable from mature infrastructure. Fewer than 8% of Tranco top-1M sit here.
  • Grade B (75–89) — Good with a gap Solid overall, one or two dimensions could improve. Typical shortfalls: DMARC at 'none' policy (SPF still enforced but no visibility), or missing security headers, or SSL renewal window under 30 days.
  • Grade C (60–74) — Working but exposed Multiple dimensions need attention. Common shape: SPF present but DMARC absent, headers below C, expiring cert. Working infrastructure but a real attacker would have measurable footholds.
  • Grade D (40–59) — Serious issues Two or more critical failures. Expired cert, absent email authentication, no security headers at all. Domain may still function but is trivial to abuse for phishing or spoofing.
  • Grade F (< 40) — Broken or hostile Fundamental problems — cert failure, dead DNS, or an actively parked / hijacked state. Do not trust email or web traffic from an F-grade domain without out-of-band verification.
05 · BADGE

Embed a live trust badge on your site

Every scanned domain that grades D or higher qualifies for an embeddable trust badge. The badge is a single SVG served from the same origin as the report — no JavaScript to load, no CORS gymnastics, no tracking pixels. It re-fetches the underlying score every scan cycle so what visitors see always matches your live report.

Horizontal bar (260×44)

Wide, thin banner. Fits below a signup form, next to a security page link, or in a footer strip. Shows domain + verified line + score.

Rectangular card (380×120)

Full card variant. Domain, verified line, three sub-score chips (SSL, DNS, Email), and grade block. Ideal for a dedicated trust page.

Vertical card (170×210)

Sidebar widget. Grade letter, score ring, domain wordmark, DomainScan attribution. Portrait aspect fits blog sidebars and SaaS marketplace listings.

Compact chip (160×40)

Tiny inline pill. Sits next to a logo or nav item. Just brand mark + `Trust` + score. Smallest embed footprint we ship.

Drop-in HTML — copy-paste anywhere
<a href="https://domainscan.in/scan/yoursite.com" rel="noopener">
  <img src="https://domainscan.in/badge/yoursite.com.svg?variant=horizontal"
       width="260" height="44"
       alt="DomainScan Trust — verified" />
</a>
Markdown — README, docs, changelog
[![DomainScan Trust](https://domainscan.in/badge/yoursite.com.svg)](https://domainscan.in/scan/yoursite.com)
06 · API

Every check is JSON-accessible

This report is a UI over api.domainscan.in — the same JSON that renders every card is available to your code. No signup, no API keys, no billing tier. Free is the whole tier. Every endpoint is CORS-enabled and returns a stable `{ success, data, error }` envelope.

Composite trust score
curl "https://api.domainscan.in/api/v1/domain/trust?domain=cloudflare.com"
SSL / TLS chain
curl "https://api.domainscan.in/api/v1/security/ssl-info?domain=cloudflare.com"
DNS records (all types)
curl "https://api.domainscan.in/api/v1/domain/dns?domain=cloudflare.com"
Response envelope
{
  "success": true,
  "data": {
    "domain": "cloudflare.com",
    "score":  97,
    "grade":  "A",
    "subScores": {
      "ssl":   { "score": 100, "status": "ok"   },
      "dns":   { "score": 100, "status": "ok"   },
      "exp":   { "score": 100, "status": "ok"   },
      "email": { "score":  95, "status": "ok"   },
      "hdr":   { "score":  85, "status": "ok"   }
    }
  }
}
07 · USE CASES

Who uses the Trust Scanner

Six recurring patterns for teams and individuals:

Vendor security review (Procurement)

Before signing with a SaaS provider, run their domain. Grade below C is a real red flag for enterprise sales — you're evaluating the same operational team that runs the product.

SaaS trust page (Marketing)

Embed your own trust badge on your public trust page or homepage. Signals security posture without requiring the reader to open a SOC 2 report.

Open source authenticity (Community)

Add a badge to your README. Signals to package consumers that the project's domain is real, monitored, and not a typosquat of a legit project.

Phishing investigation (Security)

Fast triage of a suspicious sender domain. Recently-registered + no DMARC + F-grade headers is the canonical phishing fingerprint. Sub-30-second read.

Portfolio monitoring (Ops)

Scan every domain you own once. All continue being re-probed automatically. Cert renewals, DMARC drift, and header regressions surface as events.

Board / investor reporting (Governance)

The score is a single defensible number for a security metrics dashboard. Reported alongside SLA uptime and MTTR, it captures the domain-configuration posture.

08 · QUESTIONS

Common questions

  • How long does the first scan take? For a domain we haven't seen before, six probes run in parallel: SSL handshake, DNS resolution, WHOIS/RDAP lookup, SPF, DMARC, and HTTP header fetch. Median wall time is under 30 seconds; heavier registries or unresponsive sites can push it to 60. The page polls the backend every 4 seconds and fills in each dimension as its probe completes — you see the score materialize live.
  • Is the data cached? Yes, at multiple layers. Each probe result is stored with a 30-day TTL. Composite scores refresh on every probe cycle. The badge SVG is CDN-cached for one hour by default with stale-while-revalidate — you always get an image, never a broken embed.
  • What triggers a monitoring event? Any material change between two consecutive probe snapshots — a new SSL certificate, a DMARC policy switch, an NS record change, a domain expiry date update, a header removal. Events are classified by severity (crit / high / medium / low / info) and shown in the Recent Changes tab.
  • How is a scan different from a WHOIS lookup? WHOIS returns only registration metadata — creation date, expiry, registrar, nameservers. A trust scan runs six independent live probes and produces a security posture verdict. WHOIS answers 'who owns this?' — a scan answers 'is this configured correctly and safe to trust?'
  • Can I rescan on demand? Yes. The Rescan button boosts all probe jobs to run immediately with a 30-second per-job cooldown. Fresh results start landing within seconds. Useful right after you ship a security header fix or DMARC upgrade — you don't have to wait for the next cadence tick.
  • Do you support IPv6 / internationalized domain names (IDN)? Yes to both. AAAA records are fetched alongside A. Internationalized domains are normalized to punycode (xn--) at probe time and displayed in their unicode form in the UI. Emoji domains work but are visually filtered from the badge to keep SVG size predictable.
  • How is this different from Qualys SSL Labs or SecurityHeaders.com? Those tools each grade one dimension. Domain Trust Scanner aggregates SSL Labs-style TLS analysis, SecurityHeaders-style HTTP header grading, MXToolBox-style email authentication, plus WHOIS and DNS into one composite. And it monitors continuously — you don't re-run each scan manually.
  • Is there a rate limit? The public API doesn't require an API key and doesn't apply per-IP rate limits at the free tier. Probes are backed by upstream services (Verisign RDAP, Google DNS, etc.) that have their own limits — we cache aggressively to avoid burning through them. Sustained high-volume use should identify the caller via User-Agent so we can talk about a plan.
09 · RELATED

Drill deeper into any dimension