Script to search for NullByte exploits

pull/1/head
Philipp Dunkel 15 years ago
parent 5ee56423df
commit db7d458392

@ -0,0 +1,14 @@
#!/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";
}
}
Loading…
Cancel
Save