Skip to content

Commit

Permalink
Merge pull request #987 from dbarzin/dev
Browse files Browse the repository at this point in the history
fix cve-search
  • Loading branch information
dbarzin authored Nov 29, 2024
2 parents 649a9cb + 93cc5ff commit 6e2db06
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions app/Console/Commands/CVESearch.php
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,6 @@ public function handle()
return;
}

$json = json_decode($response);

// get application names in lowercase
$names = MApplication::all()
->sortBy('name')
Expand Down Expand Up @@ -203,8 +201,9 @@ public function handle()
}
}
}


}
elseif (property_exists($cve,"circl")) {
// SKIP
}
else {
Log::error("Unknown CVE format !");
Expand Down

0 comments on commit 6e2db06

Please sign in to comment.