SSL certificate verification failure in Chrome, Heartbleed bug?

16,048

Solution 1

i've got the same problem since weeks (!), exactly same setup (chrome / mac os - newest versions), also from germany. anybody an idea?

workaround: use safari or firefox.

seems to be a chrome specific problem.

- update -

here is the solution:

https://productforums.google.com/forum/#!topic/chrome/Duu4y-d-PIU

  • delete false certificates
  • will be correctly recreated by system on reboot

Solution 2

This other answer helped me: https://superuser.com/a/788547.

It's Mac OS X related, and it helps solving a problem that affects chrome in a similar way (with Github) because of a certificate that expired on July 26th 2014.

The steps that worked for me:

  1. Open Keychain (Applications / Utilities / Keychain)
  2. Go to Presentation -> Display expired certificates
  3. Find the "DigiCert High Assurance EV Root CA" certificate
  4. Close Chrome
  5. Download back this certificate from : https://www.digicert.com/digicert-root-certificates.htm
  6. Drag it to your "Session" keychain
  7. Restart Chrome
  8. Go to github, should be solved!

Solution 3

I've been having similar issues.

Try synchronizing your system clock with an internet time server. SSL connections check the date and time of the system so doing this fixed it for me.

Solution 4

This is what worked for me (mac, not able to open github):

  1. Open Keychain
  2. Select "View" -> "Show Expired Certificates"
  3. In the search box, type "Digi". This should be enough to show any/all DigiCert certificates.
  4. Delete any certificates that have a red "X" icon (these are expired).
  5. Navigate to / reload GitHub. You should be allowed access.

Worth noting, I did not need a restart of Chrome or the OS.

Share:
16,048

Related videos on Youtube

damian
Author by

damian

Updated on September 18, 2022

Comments

  • damian
    damian almost 2 years

    For some reasons I'm running into SSL problems since a few days. When trying to clone a git repository for example I receive the following error message:

    fatal: unable to access 'https://[email protected]/somerepo.git/': SSL certificate problem: Invalid certificate chain

    I was able to solve this issue by setting the following configuration option:

    git config --global http.sslVerify false;

    But when I try to access github.com or bitbucket.org through chrome I get the following:

    HSTS failure

    certification failure certification failure

    Unfortunately it's in german but in short it says that the connection is affected by something. The failure type is HSTS failure. The second screen says that the certificate was signed by a unreliable deliverer.

    I'm using Chrome (34.0.1847.116) on a Mac (OS X 10.9.2 (13C64)).

    Any suggestions what could cause this issue or how to solve it?

  • damian
    damian about 10 years
    Removing the certificates solved it for me... Danke!
  • rogerdpack
    rogerdpack almost 10 years
    This was my problem as well--you can tell if this is "your" problem by [ironically] browsing to the same site using firefox, if it shows a message like "The certificate will not be valid until 07/30/2014 05:55 AM. The current time is 07/17/2014 07:54 PM." then your time is out of date.
  • user1729603
    user1729603 almost 10 years
    I tried this and it didn't work for me. Or rather, I deleted a bunch of certs that were expired and it is still not working. How do I add the more updated version of the ones I removed? Once I go to the site, should it auto download the correct certificate? If that is the case, when I go to Heroku it is still giving me the error.
  • Francisco  Tapia
    Francisco Tapia about 9 years
    and it works?..
  • Vaibhav Jain
    Vaibhav Jain about 9 years
    It does, and we have to set it false again, after the clone is completed.