- or download this
# certutil -L -d /home/$username/.mozilla/firefox/*.default/
Certificate Nickname Trust Attributes
...
CN=$certname,OU=site,O=org,L=city,ST=state,C=US u,u,u
CN=Certificate Authority,OU=site,O=org CT,C,C
- or download this
my $command = "certutil -L -d $config{firefox_profile}";
open(OUTPUT , "-|", "$command");
...
#Do something
}
}
- or download this
$cert_hash{CN=$certname,OU=site,O=org,L=city,ST=state,C=US}{trust} = “
+u,u,u”;
$cert_hash{CN=Certificate Authority,OU=site,O=org}{trust} = “CT,C,C”;