Created
August 9, 2023 13:10
-
-
Save AlexFroio/f0eef5613b4a7a8147ebc10e19a2e98f to your computer and use it in GitHub Desktop.
ZScaler issues inserting company certificate mid-transit of a TLS tunnel
This file contains hidden or 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
# SSL Cert issues | |
Need to get the .crt file for ZScaler. Can be done with an OpenSSL command or by asking IT for a copy. | |
## Extracting the cert(?) | |
``` | |
openssl x509 -inform DER -in /mnt/d/eset.cer -out ./ZscalerRootCertificate-2048-SHA256.crt | |
``` | |
## Installing the cert | |
``` | |
sudo cp ZscalerRootCertificate-2048-SHA256.crt /usr/local/share/ca-certificates/ | |
sudo update-ca-certificates | |
``` |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment