Skip to content

Commit 8ff10df

Browse files
authored
Adjust OWSAP suppression configuration (#2277)
1 parent b663f1b commit 8ff10df

File tree

6 files changed

+19
-22
lines changed

6 files changed

+19
-22
lines changed

build-tools/owasp/suppressions.xml

Lines changed: 9 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -31,28 +31,19 @@
3131
</suppress>
3232

3333
<!-- Suppressed vulnerabilities. These need monthly review. -->
34-
<suppress until="2025-08-10Z">
35-
<notes><![CDATA[
36-
This vulnerability affects a transitive dependency of the test module but is not relevant
37-
for how it is used in the context of the Java Client Libraries.
38-
]]></notes>
39-
<packageUrl regex="true">^pkg:maven/net\.minidev/json-smart@.*$</packageUrl>
40-
<vulnerabilityName>CVE-2024-57699</vulnerabilityName>
41-
</suppress>
42-
<suppress until="2025-08-10Z">
34+
<suppress>
4335
<notes><![CDATA[
44-
This vulnerability affects a transitive dependency of the test module but is not relevant
45-
for how it is used in the context of the Java Client Libraries.
36+
This vulnerability relates to database files used by the Fuseki server, which is not used in the Java Client libraries.
4637
]]></notes>
47-
<packageUrl regex="true">^pkg:maven/org\.eclipse\.jetty\.http2/http2-common@.*$</packageUrl>
48-
<cve>CVE-2024-6763</cve>
38+
<packageUrl regex="true">^pkg:maven/org\.apache\.jena/jena-.*@.*$</packageUrl>
39+
<cve>CVE-2025-49656</cve>
4940
</suppress>
50-
<suppress until="2025-08-10Z">
41+
<suppress>
5142
<notes><![CDATA[
52-
This vulnerability affects a transitive dependency of the test module but is not relevant
53-
for how it is used in the context of the Java Client Libraries.
43+
This vulnerability relates to file access paths when using Fuseki, which is not used in the Java Client libraries.
5444
]]></notes>
55-
<packageUrl regex="true">^pkg:maven/org\.eclipse\.jetty\.http2/http2-common@.*$</packageUrl>
56-
<cve>CVE-2025-1948</cve>
45+
<packageUrl regex="true">^pkg:maven/org\.apache\.jena/jena-.*@.*$</packageUrl>
46+
<cve>CVE-2025-50151</cve>
5747
</suppress>
48+
5849
</suppressions>

integration/base/pom.xml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,10 +107,15 @@
107107
</dependency>
108108
<dependency>
109109
<groupId>org.wiremock</groupId>
110-
<artifactId>wiremock</artifactId>
110+
<artifactId>wiremock-standalone</artifactId>
111111
<version>${wiremock.version}</version>
112112
<scope>provided</scope>
113113
</dependency>
114+
<dependency>
115+
<groupId>org.hamcrest</groupId>
116+
<artifactId>hamcrest</artifactId>
117+
<version>${hamcrest.version}</version>
118+
</dependency>
114119

115120
<!-- test dependencies -->
116121
<dependency>

performance/base/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
</dependency>
108108
<dependency>
109109
<groupId>org.wiremock</groupId>
110-
<artifactId>wiremock</artifactId>
110+
<artifactId>wiremock-standalone</artifactId>
111111
<version>${wiremock.version}</version>
112112
<scope>provided</scope>
113113
</dependency>

pom.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
<smallrye.config.version>3.13.2</smallrye.config.version>
8080
<yasson.version>3.0.4</yasson.version>
8181
<wiremock.version>3.13.1</wiremock.version>
82+
<hamcrest.version>3.0</hamcrest.version>
8283

8384
<!-- disable by default (enabled by profile in CI) -->
8485
<dependency-check.skip>true</dependency-check.skip>

spring/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,7 @@
107107
<jdk>[17,)</jdk>
108108
</activation>
109109
<properties>
110-
<spring.security.version>6.5.1</spring.security.version>
110+
<spring.security.version>6.5.3</spring.security.version>
111111
</properties>
112112
</profile>
113113
</profiles>

test/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
</dependency>
4040
<dependency>
4141
<groupId>org.wiremock</groupId>
42-
<artifactId>wiremock</artifactId>
42+
<artifactId>wiremock-standalone</artifactId>
4343
<version>${wiremock.version}</version>
4444
<scope>provided</scope>
4545
</dependency>

0 commit comments

Comments
 (0)