| Package | Description |
|---|---|
| org.owasp.dependencycheck.data.nvdcve |
Contains classes used to work with the NVD CVE data.
|
| org.owasp.dependencycheck.dependency |
Contains the core Dependency implementation.
|
| Modifier and Type | Method and Description |
|---|---|
Vulnerability |
CveDB.getVulnerability(String cve)
Gets a vulnerability for the provided CVE.
|
| Modifier and Type | Method and Description |
|---|---|
List<Vulnerability> |
CveDB.getVulnerabilities(us.springett.parsers.cpe.Cpe cpe)
Retrieves the vulnerabilities associated with the specified CPE.
|
| Modifier and Type | Method and Description |
|---|---|
Set<Vulnerability> |
Dependency.getSuppressedVulnerabilities()
Get an unmodifiable set of suppressedVulnerabilities.
|
Set<Vulnerability> |
Dependency.getSuppressedVulnerabilities(boolean sorted)
Get an unmodifiable, optionally sorted.
|
Set<Vulnerability> |
Dependency.getVulnerabilities()
Get the unmodifiable sorted set of vulnerabilities.
|
Set<Vulnerability> |
Dependency.getVulnerabilities(boolean sorted)
Get the unmodifiable list of vulnerabilities; optionally sorted.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Dependency.addSuppressedVulnerability(Vulnerability vulnerability)
Adds a vulnerability to the set of suppressed vulnerabilities.
|
void |
Dependency.addVulnerability(Vulnerability vulnerability)
Adds a vulnerability to the dependency.
|
int |
Vulnerability.compareTo(@NotNull Vulnerability o)
Compares two vulnerabilities.
|
void |
Dependency.removeVulnerability(Vulnerability v)
Removes the given vulnerability from the list.
|
| Modifier and Type | Method and Description |
|---|---|
void |
Dependency.addSuppressedVulnerabilities(List<Vulnerability> vulns)
Add a list of suppressed vulnerabilities to the collection.
|
void |
Dependency.addVulnerabilities(List<Vulnerability> vulnerabilities)
Adds a list of vulnerabilities to the dependency.
|
Copyright © 2012–2020 OWASP. All rights reserved.