Skip to content

Commit

Permalink
Suppress false positives for mongdb and mysql support
Browse files Browse the repository at this point in the history
  • Loading branch information
barchetta committed Jan 8, 2024
1 parent 7d2a151 commit aeee59a
Showing 1 changed file with 20 additions and 0 deletions.
20 changes: 20 additions & 0 deletions etc/dependency-check-suppression.xml
Original file line number Diff line number Diff line change
Expand Up @@ -227,4 +227,24 @@
<cve>CVE-2023-28360</cve>
</suppress>

<!-- False Positives. This was identifying Helidon's dbclient mongodb support artifact with MongoDB itself -->
<suppress>
<notes><![CDATA[
file name: io.helidon.dbclient:helidon-dbclient-mongodb:4.0.0-SNAPSHOT
]]></notes>
<packageUrl regex="true">^pkg:maven/io\.helidon\.dbclient/helidon\-dbclient\-mongodb@.*$</packageUrl>
<cpe>cpe:/a:mongodb:mongodb</cpe>
</suppress>



<!-- False Positives. This was identifying Helidon's mysql support artifact with MySQL itself -->
<suppress>
<notes><![CDATA[
file name: io.helidon.integrations.db:helidon-integrations-db-mysql:4.0.0-SNAPSHOT
]]></notes>
<packageUrl regex="true">^pkg:maven/io\.helidon\.integrations\.db/helidon\-integrations\-db\-mysql@.*$</packageUrl>
<cpe>cpe:/a:mysql:mysql</cpe>
</suppress>

</suppressions>

0 comments on commit aeee59a

Please sign in to comment.