Install & Explain SSL Certificates

This is a repost of this answer on Ask Ubuntu, which, primarily showing how to install SSL certificates on CLI, explains as well what happens behind the scene when a certificate verification error occurs1.

This work is licensed under the Creative Common Attribute-SharedAlike 3.0 Unported License , as the original post requires.


TL;DR

For everything to work and not only your browser, you need to add that CA certificate to the system’s trusted CA repository.

In ubuntu:

  • Go to /usr/local/share/ca-certificates/
  • Create a new folder, i.e. sudo mkdir school
  • Copy the .crt file into the school folder
  • Make sure the permissions are OK (755 for the folder, 644 for the file)
  • Run sudo update-ca-certificates

Why

Let me explain what is going on also, so the other posters see why they don’t need any certificate to use Github over HTTPS.

What is going on there is that your school is intercepting all the SSL communications, probably in order to monitor them.

To do that, what they do is in essence a “man in the middle” attack, and because of that, your browser complains rightfully that he is not being able to verify Github’s certificate. Your school proxy is taking out Github’s cert and instead providing its own cert.

When your browser tries to verify the school’s provided cert against the CA that signed Github’s cert, it rightfully fails.

So, for the SSL connection to work in the school, you need to consciously accept that “MITM” attack. And you do that by adding the school’s CA certificate as a trusted one.

When you trust that school CA, your verification of the fake Github cert will work, since the fake Github cert will be verified by the school CA.

Be aware that SSL connection is not safe anymore since your school administrator will be able to intercept all your encrypted connections.


Additional Source


  1. It usually happens in the scenario of accessing Internet from a company/school/institute’s network through a proxy. ↩︎


Check What Libraries an ELF Depends On
一个简洁实用的进入 Chroot 环境的脚本