Help for this page

Select Code to Download


  1. 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
    
  2. or download this
    my $command  = "certutil -L -d $config{firefox_profile}";
    open(OUTPUT , "-|", "$command");
    ...
            #Do something
        }
    }
    
  3. 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”;