You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
cacert-webdb/scripts/findnull.pl

15 lines
217 B
Perl

#!/usr/bin/perl -w
foreach (<../crt/*>)
{
my $res=`openssl x509 -in $_ -text -noout -inform der`;
if($res=~m/\\x00/)
{
print "Alert: $_ is affected!\n";
}
else
{
#print "$_ not affected\n";
}
}