Is there a way do deploy remotely new CA certificates to Firefox installs?
In other words, has anything changed since this question was answered Installing a CA certificate on multiple Windows machines (IE/Firefox)
Is there a way do deploy remotely new CA certificates to Firefox installs?
In other words, has anything changed since this question was answered Installing a CA certificate on multiple Windows machines (IE/Firefox)
With
certutil
from NSS Tools [1] you can administer the certificate databases used by softwares like Firefox and Thunderbird [2]:Example that adds "mycompany.pem" certificate file as "mycompany" into Firefox profile and set to trusts it as a CA that can issue client certificates for SSL, e-mail and signing (
_C,C,C
) as well as server certificates for SSL (T_,_,_
). Should be done when software is not running.You could also run the first command via PsTools's
PsExec
.NSS Tools sources can be grabbed from https://ftp.mozilla.org/pub/mozilla.org/security/nss/releases/ (some Windows binaries can be found on the Internet but given the security nature: it's better to compile it yourself)
[1]: Network Security Services: https://developer.mozilla.org/docs/NSS/tools/NSS_Tools_certutil
[2]: They are using a Netscape Communicator database with files
cert8.db
andkey3.db
.