Defaults.Exposed

Defaults.ExposedFixes › TLS certificate health

How to fix TLS certificate health

Your SSL/TLS certificate is the digital ID card that proves a visitor is really talking to your website — not an impostor — and powers the padlock in the browser. This check looks at whether that certificate is valid and trusted, not about to expire, and built with strong, modern cryptography.

Bottom line for your business: A broken or expired certificate replaces your website with a full-screen red 'Your connection is not private' warning in every browser. Most visitors leave instantly and don't come back — online sales stop, sign-ups stop, and the connection that was supposed to be private can be quietly intercepted.

What this can cost you

Why it matters. The certificate is the single most visible piece of your website's security — when it's healthy it's invisible, and when it breaks it takes your whole site down with a frightening warning that drives customers straight to competitors. Certificate expiry is the number-one cause of unexpected website outages, and it's entirely preventable. Getting a valid certificate is free, and keeping it healthy is mostly a matter of letting it renew automatically.

What this is, in plain words

When someone visits your website, two things have to happen for them to feel safe typing in a password or a card number. First, the connection has to be encrypted so strangers can’t read it. Second — and this is the part people forget — the visitor’s browser has to be sure it’s really your website on the other end, and not an impostor that’s set up a convincing fake. The thing that does both jobs is your TLS certificate (often called an “SSL certificate”).

Think of it as a tamper-proof ID card for your domain. A recognised authority issues it, it’s stamped with your domain name and an expiry date, and it carries the cryptographic key that scrambles the connection. When everything checks out, the browser shows the padlock and your site loads normally. When something is wrong with the ID card, the browser does the opposite of reassuring your visitor — it throws up a full-screen warning that says, in effect, “this site may not be safe.”

This check looks at the health of that ID card across four things that each independently break it:

The good news up front: getting a healthy certificate is free, and keeping it healthy is mostly about letting it renew itself automatically so no human has to remember.

What this can cost you

What it actually is (the four parts)

A certificate can be unhealthy in four distinct ways, and this page covers all of them. Each is a separate check under the bonnet, but to you they’re all “is my certificate OK?“

1. Valid and trusted

This is the big one — and the only part of certificate health that’s a critical, top-weight check. A certificate is “valid and trusted” only when all of these are true:

If any one of these fails, browsers show the dreaded “Your connection is not private” page, and this check fails hard. Good looks like: a certificate from a recognised authority, covering every domain and subdomain you actually use, comfortably inside its dates.

2. Not about to expire

Every certificate has a hard end date. Free ones typically last 90 days; paid ones often a year. Past the date, trust evaporates instantly — there’s no grace period. This check measures how many days are left and how that interacts with who issued it:

Good looks like: an auto-managed certificate that renews itself without anyone touching it. The single most reliable way to never have an expiry outage is to make a machine, not a person, responsible for renewal.

3. Strong signature algorithm

Every certificate is “signed” using a cryptographic algorithm that lets browsers detect tampering. Old algorithms — MD5 and SHA-1 — have been shown to be forgeable, meaning an attacker could in principle craft a fraudulent certificate that looks legitimately yours. This check passes when the certificate uses a strong, modern signature: SHA-256 or stronger (SHA-384, SHA-512), modern ECDSA, or Ed25519/Ed448. MD5 and SHA-1 fail. Good looks like: SHA-256 or better — which is the default on every free and modern certificate, so this is rarely a problem on anything issued in recent years.

4. Strong key

The certificate carries a cryptographic key that does the actual scrambling. If that key is too short, modern computing power can — given enough resources — break it, letting an attacker impersonate your site or decrypt traffic. The accepted minimums are 2048-bit RSA or 256-bit elliptic-curve (EC). This check passes at those sizes or above and fails below them. Good looks like: 2048-bit (or 4096-bit) RSA, or a 256-bit EC key such as P-256 — again, the default on modern free certificates.

A note on the last three: valid-and-trusted is the critical one that drives the warning page. Signature and key strength are about future-proofing and audits — a recent free certificate almost always passes them automatically, but they’re the things a security review will check, so they’re worth getting right.

How to fix it (free, ~15 minutes)

Hand this section to whoever runs your website or hosting — the fix is free. A valid, strong, auto-renewing certificate costs nothing through Let’s Encrypt or any modern host. We only charge to monitor that it stays healthy over time, not to fix it. If you don’t have an IT person, the platform notes below will get most owners there.

Step 1 — Get (or replace) the certificate with a free, trusted one. This single step fixes validity, signature, and key strength all at once, because modern free certificates use SHA-256 and strong keys by default.

Step 2 — Make renewal automatic so it never expires again. This is the step that prevents the weekend-outage scenario.

Step 3 — Make sure it covers the right names. The most common “valid but warning” cause is a name mismatch. The certificate must cover every hostname customers actually use — the bare domain, www, and any subdomains like shop. or app.. When generating a certificate, include each one (a wildcard like *.yourbiz.com covers all subdomains in one go).

Step 4 — If only signature or key strength is flagged, just reissue. You don’t need to buy anything: generate a fresh certificate (Step 1) and the new one will use SHA-256 and a strong key automatically. On your own server you can pin a modern key explicitly — e.g. openssl ecparam -genkey -name prime256v1 -out server.key for EC, or openssl genrsa -out server.key 4096 for RSA — then reissue.

Step 5 — Verify, then re-check here. Confirm the dates, issuer and key with a quick command — echo | openssl s_client -servername yourbiz.com -connect yourbiz.com:443 2>/dev/null | openssl x509 -noout -dates -issuer -subject — then re-run this check.

Common mistakes

FAQ

I'm not technical — is this something I can sort out myself?

You don't need to understand the cryptography. A valid certificate is free (via Let's Encrypt and most modern hosts), and on managed hosting it's usually automatic. Hand the 'How to fix it' section below to whoever runs your website or hosting — for the vast majority of businesses it's a quick, free job, not a purchase.

My site shows a padlock — doesn't that mean my certificate is fine?

The padlock only means a secure connection exists right now. It doesn't tell you the certificate is about to expire, that it's built on a strong key, or that it'll still be trusted by tomorrow's browsers. This check looks past the padlock at the four things that actually keep it lit: is the certificate valid and trusted, is it expiring soon, is it signed with a strong algorithm, and is its key strong enough.

Do I have to pay for an SSL certificate?

No. Free certificates from Let's Encrypt (and built into Cloudflare, cPanel AutoSSL, and most modern hosting) are trusted by every browser and are exactly as secure as paid ones. Paid certificates mainly buy support contracts, warranties, or extended-validation badges — none of which affect whether your site is encrypted or trusted. We never charge to fix this; we only charge to monitor that it stays healthy.

How can a certificate 'expire' — and why does that take my site down?

Every certificate has a fixed end date (often 90 days for free ones). Past that date browsers refuse to trust it and show a full-page warning instead of your site. It's not a gradual decline — it works perfectly until the deadline, then breaks completely. That's why auto-renewal matters so much: it removes the human who would otherwise forget.

What's a 'self-signed' certificate and why does it fail?

A self-signed certificate is one you issued to yourself rather than getting from a recognised authority. It encrypts the connection, but nothing vouches that it's really you — so browsers treat it as untrusted and warn visitors, exactly as they would for an attacker's fake certificate. For a public website you always want one from a trusted authority, which is free.

What do 'weak key' and 'weak signature algorithm' actually mean for my business?

Both are ways a certificate can be technically valid today but cryptographically fragile. A weak key (under 2048-bit RSA or 256-bit EC) can in principle be cracked, letting an attacker impersonate your site. A weak signature (SHA-1 or MD5) can be forged to create a convincing fake certificate. Modern free certificates use strong keys and signatures by default, so the fix is almost always just reissuing — at no cost.