summaryrefslogtreecommitdiffhomepage
path: root/android/test/test-suppression.xml
blob: cb6bd25a192d1e3d313f47dfff4e170c62467723 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
<?xml version="1.0" encoding="UTF-8"?>
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
    <suppress until="2024-09-01Z">
        <notes><![CDATA[
            False-positive related to Drupal rather than Android development.
            https://nvd.nist.gov/vuln/detail/CVE-2014-9152
        ]]></notes>
        <packageUrl regex="true">^pkg:maven/androidx\.test\.services/storage@.*$</packageUrl>
        <cve>CVE-2014-9152</cve>
    </suppress>
    <suppress until="2024-12-01Z">
        <notes><![CDATA[
            No impact on this app since it uses UDS rather than HTTP2.
        ]]></notes>
        <packageUrl regex="true">^pkg:maven/io\.grpc/grpc.*-stub@.*$</packageUrl>
        <cve>CVE-2023-32732</cve>
        <cve>CVE-2023-33953</cve>
        <cve>CVE-2023-44487</cve>
    </suppress>
    <suppress until="2024-12-01Z">
        <notes><![CDATA[
            Denial of service using protobuf.
            Should not be applicable since client and server are always in sync and we are only
            communicating locally over UDS.
        ]]></notes>
        <packageUrl regex="true">^pkg:maven/com\.google\.protobuf/protobuf-.*@.*$</packageUrl>
        <cve>CVE-2024-7254</cve>
    </suppress>
</suppressions>