Skip to content

Commit

Permalink
fix: update rejected CVEs check (#5268)
Browse files Browse the repository at this point in the history
  • Loading branch information
jeremylong authored Jan 10, 2023
2 parents 94634c6 + a39f08f commit 3aaa282
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ public String extractEcosystem(String baseEcosystem, VulnerableSoftware parsedCp
* <code>false</code>
*/
public boolean isRejected(String description) {
return description.startsWith("** REJECT **");
return description.startsWith("** REJECT **") || description.startsWith("DO NOT USE THIS CANDIDATE NUMBER");
}

/**
Expand Down

0 comments on commit 3aaa282

Please sign in to comment.