Safari doesn’t load Kickstarter properly

google-chromesafari

When I go to Kickstarter.com, this is the site I see:
enter image description here

Now, I have tried trouble shooting this by myself. I have deleted the website information from the privacy tab, I have turned off / uninstalled all extensions 3rd party or otherwise.

None of these steps restores the website.

Interestingly even Google Chrome does not work:

enter image description here

Does anyone know what is going on?

Best Answer

The error "NET::ERR_CERT_REVOKED" indicates that one of the certificates in the certificate chain was revoked. The kickstarter site works for other users here though.

Either the kickstarter (*c.ssl.fastly.net) or the root/intermediate certificate (Global Sign Root/Global Sign CloudSSL CA) was revoked erroneously or temporarily. The revocation is still stored in your ocsp/crl cache.

After deleting the caches the chain of certificates (and https://kickstarter.com) should work again:

in 10.11 or older open Terminal and execute:

sudo rm /var/db/crls/*cache.db

in 10.12 (Sierra) use this command instead:

sqlite3 ~/Library/Keychains/*/ocspcache.sqlite3 'DELETE FROM ocsp;'

After deleting the cache reboot your Mac.


Probably related: NET::ERR_CERT_REVOKED in Chrome, when the certificate is not actually revoked