owaspSuppressions.xml 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <!--
  3. Licensed to the Apache Software Foundation (ASF) under one or more
  4. contributor license agreements. See the NOTICE file distributed with
  5. this work for additional information regarding copyright ownership.
  6. The ASF licenses this file to You under the Apache License, Version 2.0
  7. (the "License"); you may not use this file except in compliance with
  8. the License. You may obtain a copy of the License at
  9. http://www.apache.org/licenses/LICENSE-2.0
  10. Unless required by applicable law or agreed to in writing, software
  11. distributed under the License is distributed on an "AS IS" BASIS,
  12. WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. See the License for the specific language governing permissions and
  14. limitations under the License.
  15. -->
  16. <suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.2.xsd">
  17. <suppress>
  18. <!-- ZOOKEEPER-3217 -->
  19. <cve>CVE-2018-8088</cve>
  20. </suppress>
  21. <suppress>
  22. <!-- ZOOKEEPER-4660 -->
  23. <cve>CVE-2021-37533</cve>
  24. </suppress>
  25. <suppress>
  26. <!-- ZOOKEEPER-3262 -->
  27. <cve>CVE-2018-8012</cve>
  28. </suppress>
  29. <suppress>
  30. <!-- ZOOKEEPER-3262 -->
  31. <cve>CVE-2016-5017</cve>
  32. </suppress>
  33. <suppress>
  34. <!-- https://github.com/jeremylong/DependencyCheck/issues/1653
  35. False positive on Netty 4.x-->
  36. <cve>CVE-2018-12056</cve>
  37. <!-- ZOOKEEPER-4755: looks like a real vulnerability in Netty,
  38. but no report or patch has been published so far. This has
  39. to be monitored and will probably have to be remediated.
  40. https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2023-4586
  41. -->
  42. <cve>CVE-2023-4586</cve>
  43. </suppress>
  44. <suppress>
  45. <!-- Seems like false positive - we are not using Prometheus
  46. 2.x, rather the client which latest is 0.6. at the time of
  47. this writing -->
  48. <cve>CVE-2019-3826</cve>
  49. </suppress>
  50. <suppress>
  51. <!-- Seems like false positives about zookeeper-jute -->
  52. <cve>CVE-2021-29425</cve>
  53. <cve>CVE-2021-28164</cve>
  54. <cve>CVE-2021-34429</cve>
  55. </suppress>
  56. <suppress>
  57. <!-- ZOOKEEPER-4716: jackson related false positives -->
  58. <!-- according to jackson community, this is not a security issue,
  59. see: https://github.com/FasterXML/jackson-databind/issues/3972#issuecomment-1596193098 -->
  60. <cve>CVE-2023-35116</cve>
  61. <!-- the following CVE is not even jackson related, but a vulnerability
  62. in json-java which we don't use in ZooKeeper -->
  63. <cve>CVE-2022-45688</cve>
  64. </suppress>
  65. </suppressions>