Discover subdomains from SSL/TLS certificates

Every TLS certificate ever issued is logged to public Certificate Transparency (CT) logs, and every certificate's SANs field lists the domains it covers. Searching CT for a target domain is the most reliable passive way to enumerate subdomains — including staging hosts, internal panels, and dev environments that DNS scanning misses entirely.

Why CT logs reveal subdomains

When a CA issues a TLS certificate, it must submit the certificate to multiple CT logs (Chrome and Safari refuse to trust certs that aren't logged). The certificate's Subject Alternative Names (SANs) extension lists every hostname the certificate covers. Both the certificate and the SANs become part of the public log permanently.

The result: any time someone provisions a TLS certificate for staging.example.com, internal.example.com, or admin-old-2019.example.com, that hostname is now publicly discoverable forever — even if the host is decommissioned, even if DNS no longer resolves it, even if the certificate has long expired.

Step-by-step

1. Try it in the browser

Search any domain below — CT Radar returns every certificate ever issued for that domain or its subdomains.

Try: ···

2. Use the CLI for pipeable output

# install
$ go install github.com/imfht/ct-radar@latest
$ export CT_RADAR_KEY=<your-key>

# enumerate
$ ct-radar example.com
api.example.com
admin.example.com
internal.example.com
staging.example.com
dev-old.example.com
... 847 unique subdomains

3. Pipe into httpx to find what is alive

$ ct-radar example.com | httpx -silent
https://api.example.com [200]
https://staging.example.com [403]
https://admin.example.com [401]
... 124 live hosts

4. Combine with active enumeration

# CT (passive) + subfinder (passive DNS) + amass (active brute force)
$ {
    ct-radar example.com;
    subfinder -d example.com -silent;
    amass enum -passive -d example.com;
  } | sort -u | httpx -silent
... 1,247 live hosts

Tips and limits

Start with a search

Free tier covers 100 lookups per day. No signup needed for the search bar.

Search certificates →