Skip to content

Commit

Permalink
fix cve-search
Browse files Browse the repository at this point in the history
  • Loading branch information
dbarzin committed Nov 29, 2024
1 parent f47c9f4 commit 93cc5ff
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 93cc5ff

Please sign in to comment.