NET::ERR_CERT_REVOKED — your CA (Let's Encrypt, DigiCert) revoked the SSL certificate. Serious: clients can't connect at all. Causes: compromised private key, mis-issuance, CA compliance issue. Solution: immediately issue a new cert and deploy to the server. Find out why via the CA dashboard or email notifications.
This error blocks HTTPS access. Below: causes, fixes, working config, FAQ.
Free online tool — SSL certificate checker: instant results, no signup.
certbot revokecertbot certonly --force-renewal -d example.comnginx -t && systemctl reload nginxThe ERR_CERT_REVOKED error indicates that the SSL certificate for a website has been revoked by the Certificate Authority (CA). This can occur due to various reasons, including compromised keys or a change in the ownership of the domain. To resolve this issue, verify the certificate status using tools like openssl or crt.sh and, if necessary, contact the CA for reissuance or replacement of the certificate.
The ERR_CERT_REVOKED error arises when a web browser detects that the SSL certificate presented by a server has been revoked. This revocation can happen for several reasons:
Understanding these causes is crucial for web administrators and security professionals to maintain the integrity of their SSL/TLS configurations.
To diagnose and resolve the ERR_CERT_REVOKED error, follow these steps:
openssl command-line tool to check the certificate status. Execute the command:openssl s_client -connect yourdomain.com:443 -statusThis command will attempt to connect to your domain and display the certificate chain and its status. Look for the OCSP response section, which indicates whether the certificate is valid or revoked.
Enter your domain name to search for its associated certificates. If the certificate appears as revoked, proceed to the next step.
Be prepared to provide documentation proving your right to the domain and the reason for revocation.
For example, you can generate a CSR using the following command:
openssl req -new -newkey rsa:2048 -nodes -keyout yourdomain.key -out yourdomain.csrFollow the prompts to enter your domain information. After submitting the CSR, the CA will provide a new certificate.
httpd.conf or ssl.conf files to point to the new certificate files:SSLCertificateFile /path/to/yourdomain.crt
SSLCertificateKeyFile /path/to/yourdomain.key
SSLCertificateChainFile /path/to/chainfile.pemAfter installation, restart your web server to apply the changes.
By following these steps, you can effectively diagnose and resolve the ERR_CERT_REVOKED error, ensuring a secure connection for your users.
SSL/TLS is the encryption protocol that protects data between the browser and server. Our tool analyzes the certificate, chain of trust, TLS version, and knownvulnerabilities.
Issuer, validity period, signature algorithm, covered domains (SAN), and validation type (DV/OV/EV).
Full chain verification: from leaf certificate through intermediates to root CA.
Protocol version (TLS 1.2/1.3), cipher suites, Perfect Forward Secrecy (PFS) support.
Set up a monitor — get Telegram and email alerts 30/14/7 days before expiration.
SSL certificate monitoring
TLS config audit
HTTPS as ranking factor
customer trust
www and subdomains.Strict-Transport-Security header forces browsers to always use HTTPS.SSL certificate monitoring, check history and alerts 30 days before expiry.
Sign up freeImmediately. Certbot auto-handles. Revocation does not affect rate limit (same 5 requests/week/domain).
Yes if OCSP soft-fail. Rigorous validation (Chrome Must-Staple, Firefox) catches it. Mobile apps — up to 7-day cache.
Let's Encrypt — in email. Commercial CA — in account dashboard.
<a href="/en/ssl">Enterno SSL checker</a> → cert status (Active / Revoked / Expired).
Free plan — 10 monitors, checks every 5 min, no card required. Upgrade for 1-minute interval and multi-region monitoring.