Skip to content

Instantly share code, notes, and snippets.

@Wowfunhappy
Created March 13, 2025 14:24
Show Gist options
  • Save Wowfunhappy/0e21294a528c370120060e1115dd581f to your computer and use it in GitHub Desktop.
Save Wowfunhappy/0e21294a528c370120060e1115dd581f to your computer and use it in GitHub Desktop.
Add ISRG Root X1 certificate to legacy macOS
# 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