Skip to content

Commit

Permalink
Bug fix for issue #145
Browse files Browse the repository at this point in the history
Version with x are no longer taken into account
  • Loading branch information
jmrenouard committed Jan 19, 2016
1 parent 0599991 commit da22f57
Show file tree
Hide file tree
Showing 2 changed files with 420 additions and 502 deletions.
2 changes: 1 addition & 1 deletion build/updateCVElist.pl
Expand Up @@ -61,7 +61,7 @@ sub AUTOLOAD {
and $line !~ /(Radius|Proofpoint|Active\ Record|XAMPP|TGS\ Content|e107|post-installation|Apache\ HTTP|Zmanda|pforum|phpMyAdmin|Proxy\ Server|on\ Windows|ADOdb|Mac\ OS|Dreamweaver|InterWorx|libapache2|cisco|ProFTPD)/i) {
$line =~ s/,/;/g;

@versions = $line =~/(\d{1,2}\.\d+\.[\d|x]+)/g;
@versions = $line =~/(\d{1,2}\.\d+\.[\d]+)/g;

foreach my $vers (uniq(@versions)) {
my @nb=split('\.', $vers);
Expand Down

0 comments on commit da22f57

Please sign in to comment.