Skip to content

Commit 4d571ed

Browse files
Pururunalbin-mullvad
authored andcommitted
Suppress CVE-2024-7254
1 parent 5cadd01 commit 4d571ed

File tree

3 files changed

+23
-0
lines changed

3 files changed

+23
-0
lines changed

android/config/dependency-check-suppression.xml

+9
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,13 @@
4040
<packageUrl regex="true">^pkg:maven/commons\-validator/commons\-validator@.*$</packageUrl>
4141
<cve>CVE-2021-3765</cve>
4242
</suppress>
43+
<suppress until="2024-12-01Z">
44+
<notes><![CDATA[
45+
Denial of service using protobuf.
46+
Should not be applicable since client and server are always in sync and we are only
47+
communicating locally over UDS.
48+
]]></notes>
49+
<packageUrl regex="true">^pkg:maven/com\.google\.protobuf/protobuf-.*@.*$</packageUrl>
50+
<cve>CVE-2024-7254</cve>
51+
</suppress>
4352
</suppressions>

android/gradle/osv-scanner.toml

+5
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,11 @@ id = "CVE-2022-24329" # GHSA-2qp4-g3q3-f92w
6868
ignoreUntil = 2024-11-02
6969
reason = "This CVE only affect Multiplatform Gradle Projects, which this project is not."
7070

71+
[[IgnoredVulns]]
72+
id = "CVE-2024-7254" # GHSA-735f-pc8j-v9w8
73+
ignoreUntil = 2024-11-02
74+
reason = "Should not be applicable since client and server are always in sync and we are only communicating locally over UDS."
75+
7176
[[PackageOverrides]]
7277
name = "org.bouncycastle:bcprov-jdk15on"
7378
ecosystem = "Maven"

android/test/test-suppression.xml

+9
Original file line numberDiff line numberDiff line change
@@ -17,4 +17,13 @@
1717
<cve>CVE-2023-33953</cve>
1818
<cve>CVE-2023-44487</cve>
1919
</suppress>
20+
<suppress until="2024-12-01Z">
21+
<notes><![CDATA[
22+
Denial of service using protobuf.
23+
Should not be applicable since client and server are always in sync and we are only
24+
communicating locally over UDS.
25+
]]></notes>
26+
<packageUrl regex="true">^pkg:maven/com\.google\.protobuf/protobuf-.*@.*$</packageUrl>
27+
<cve>CVE-2024-7254</cve>
28+
</suppress>
2029
</suppressions>

0 commit comments

Comments
 (0)