Created
March 13, 2025 14:24
-
-
Save Wowfunhappy/0e21294a528c370120060e1115dd581f to your computer and use it in GitHub Desktop.
Add ISRG Root X1 certificate to legacy macOS
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# One-line Terminal command to add the ISRG Root X1 certificate to old versions of macOS / OS X. | |
# Run this command while connected to the internet via a trustworthy source. | |
# An example of a trustworthy source would (probably) be a password-protected home WiFi network. | |
# An example of an untrustedworthy source would be the public WiFi at your local coffee shop. | |
curl 'http://x1.i.lencr.org' > /tmp/ISRGRootX1.pem && sudo security -v add-trusted-cert -d -r trustRoot -k /Library/Keychains/System.keychain /tmp/ISRGRootX1.pem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment