Skip to content

Commit 4a8fda7

Browse files
eolivellianmolnar
authored andcommitted
ZOOKEEPER-3217: owasp job flagging slf4j on trunk
Disable OWASP checks about slf4j. We are not using EventData, so ZooKeeper is not subject to https://nvd.nist.gov/vuln/detail/CVE-2018-8088 Author: Enrico Olivelli - Diennea <eolivelli@apache.org> Author: Enrico Olivelli <eolivelli@apache.org> Reviewers: phunt@apache.org, andor@apache.org Closes #736 from eolivelli/fix/ZOOKEEPER-3217-owasp and squashes the following commits: 7dd4473 [Enrico Olivelli] Add missing license header dc9bd75 [Enrico Olivelli - Diennea] ZOOKEEPER-3217 owasp job flagging slf4j on trunk
1 parent f644f3d commit 4a8fda7

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

build.xml

+1
Original file line numberDiff line numberDiff line change
@@ -1705,6 +1705,7 @@ xmlns:cs="antlib:com.puppycrawl.tools.checkstyle.ant">
17051705
reportoutputdirectory="${owasp.out.dir}"
17061706
reportformat="ALL"
17071707
failBuildOnCVSS="0">
1708+
<suppressionfile path="${basedir}/owaspSuppressions.xml" />
17081709

17091710
<fileset dir="${ivy.lib}">
17101711
<include name="**/*.jar"/>

owaspSuppressions.xml

+25
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
<?xml version="1.0" encoding="UTF-8"?>
2+
3+
<!--
4+
Licensed to the Apache Software Foundation (ASF) under one or more
5+
contributor license agreements. See the NOTICE file distributed with
6+
this work for additional information regarding copyright ownership.
7+
The ASF licenses this file to You under the Apache License, Version 2.0
8+
(the "License"); you may not use this file except in compliance with
9+
the License. You may obtain a copy of the License at
10+
11+
http://www.apache.org/licenses/LICENSE-2.0
12+
13+
Unless required by applicable law or agreed to in writing, software
14+
distributed under the License is distributed on an "AS IS" BASIS,
15+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16+
See the License for the specific language governing permissions and
17+
limitations under the License.
18+
-->
19+
20+
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.2.xsd">
21+
<suppress>
22+
<!-- ZOOKEEPER-3217 -->
23+
<cve>CVE-2018-8088</cve>
24+
</suppress>
25+
</suppressions>

0 commit comments

Comments
 (0)