suppression.xml 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!-- This file lists false positives found by org.owasp:dependency-check-maven build plugin -->
  3. <suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
  4. <suppress>
  5. <notes><![CDATA[ Suppress known vulnerabilities in FUSE libraries for fuse-nio-adapter. For more info, see suppression.xml of https://github.com/cryptomator/fuse-nio-adapter ]]></notes>
  6. <gav regex="true">^org\.cryptomator:fuse-nio-adapter:.*$</gav>
  7. <cvssBelow>9</cvssBelow>
  8. </suppress>
  9. <suppress>
  10. <notes><![CDATA[ Suppress known vulnerabilities in FUSE libraries for jnr-fuse (dependency of fuse-nio-adapter). ]]></notes>
  11. <gav regex="true">^com\.github\.serceman:jnr-fuse:.*$</gav>
  12. <cvssBelow>9</cvssBelow>
  13. </suppress>
  14. <!-- Jetty false positives below -->
  15. <suppress>
  16. <notes><![CDATA[
  17. Suppress all for this javax.servlet api package:
  18. There are lots of false positives, simply because its version number is way beyond the remaining
  19. org.eclipse.jetty jar files. Note, that our actual Jetty version is different.
  20. As long as we don't suppress anything in org.eclipse.jetty:jetty-server or :jetty-servlet,
  21. vulnerabilities will still trigger if we actually use an outdated Jetty version.
  22. ]]></notes>
  23. <gav>org.eclipse.jetty.toolchain:jetty-servlet-api:4.0.6</gav>
  24. <cpe regex="true">.*</cpe>
  25. </suppress>
  26. <suppress>
  27. <notes><![CDATA[
  28. Incorrectly matched CPE, see https://github.com/jeremylong/DependencyCheck/issues/4177git
  29. ]]></notes>
  30. <gav regex="true">^org\.cryptomator:.*$</gav>
  31. <cpe>cpe:/a:cryptomator:cryptomator</cpe>
  32. <cve>CVE-2022-25366</cve>
  33. </suppress>
  34. <suppress>
  35. <notes><![CDATA[
  36. False positive for commons-cli due, see https://github.com/jeremylong/DependencyCheck/pull/4148
  37. ]]></notes>
  38. <gav regex="true">^commons\-cli:commons\-cli:.*$</gav>
  39. <cpe>cpe:/a:apache:james</cpe>
  40. <!-- while we are at it exclude also this fp -->
  41. <cpe>cpe:/a:spirit-project:spirit</cpe>
  42. </suppress>
  43. </suppressions>