Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Getting UNABLE_TO_VERIFY_LEAF_SIGNATURE from NPM when installing hexo-cli

I am getting an UNABLE_TO_VERIFY_LEAF_SIGNATURE error when I try to install hexo-cli on Windows. I have tried switching to another mirror but that did not fix the problem.

enter image description here

like image 685
Jerry Avatar asked Aug 23 '16 15:08

Jerry


1 Answers

Are you behind a corporate proxy? They are most likely intercepting & MiTM'ing the traffic with a self signed SSL certificate.

A hacky solution is just to turn off SSL for NPM

npm set strict-ssl false

More detailed instructions can be found here: How to fix SSL certificate error when running Npm on Windows?

References:

https://github.com/Medium/phantomjs#i-am-behind-a-corporate-proxy-that-uses-self-signed-ssl-certificates-to-intercept-encrypted-traffic

https://security.stackexchange.com/questions/101721/is-it-possible-for-corporation-to-intercept-and-decrypt-ssl-tls-traffic

like image 51
Carlos Sultana Avatar answered Nov 08 '22 17:11

Carlos Sultana