-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathdependency-check-suppressions.xml
More file actions
40 lines (32 loc) · 1.34 KB
/
dependency-check-suppressions.xml
File metadata and controls
40 lines (32 loc) · 1.34 KB
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
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="UTF-8"?>
<suppressions xmlns="https://jeremylong.github.io/DependencyCheck/dependency-suppression.1.3.xsd">
<!--
OWASP Dependency-Check Suppressions for Aether Datafixers
This file contains suppressed vulnerabilities that have been reviewed and
determined to be false positives or not applicable to our usage.
Guidelines:
- Only suppress after careful review
- Document: CVE, reason, reviewer, review date
- Re-review suppressions quarterly
- Remove when dependencies are updated
Suppression examples:
By CVE:
<suppress>
<notes>False positive: vulnerability only affects server-side usage</notes>
<cve>CVE-2024-12345</cve>
</suppress>
By GAV (GroupId:ArtifactId:Version):
<suppress>
<notes>Test-only dependency, not in production</notes>
<gav regex="true">^org\.junit\..*:.*:.*$</gav>
<cve>CVE-2024-12345</cve>
</suppress>
By file path:
<suppress>
<notes>Example library not shipped</notes>
<filePath regex="true">.*examples.*\.jar</filePath>
<vulnerabilityName>CVE-2024-12345</vulnerabilityName>
</suppress>
-->
<!-- Add actual suppressions below as needed -->
</suppressions>