Uses of Class
org.owasp.dependencycheck.dependency.Vulnerability
Packages that use Vulnerability
Package
Description
Analyzers are used to inspect the identified dependencies, collect Evidence, and process the dependencies.
Contains classes used to work with the NVD CVE data.
Contains the core Dependency implementation.
-
Uses of Vulnerability in org.owasp.dependencycheck.analyzer
Methods in org.owasp.dependencycheck.analyzer with parameters of type VulnerabilityModifier and TypeMethodDescriptionprotected voidAbstractNpmAnalyzer.replaceOrAddVulnerability(Dependency dependency, Vulnerability vuln) Evaluates if the vulnerability is already present; if it is the vulnerability is not added. -
Uses of Vulnerability in org.owasp.dependencycheck.data.nvdcve
Methods in org.owasp.dependencycheck.data.nvdcve that return VulnerabilityModifier and TypeMethodDescriptionCveDB.getVulnerability(String cve) Gets a vulnerability for the provided CVE.CveDB.getVulnerability(String cve, Connection conn) Gets a vulnerability for the provided CVE.Methods in org.owasp.dependencycheck.data.nvdcve that return types with arguments of type VulnerabilityModifier and TypeMethodDescriptionCveDB.getVulnerabilities(us.springett.parsers.cpe.Cpe cpe) Retrieves the vulnerabilities associated with the specified CPE. -
Uses of Vulnerability in org.owasp.dependencycheck.dependency
Classes in org.owasp.dependencycheck.dependency that implement interfaces with type arguments of type VulnerabilityModifier and TypeClassDescriptionclassContains the information about a vulnerability.Methods in org.owasp.dependencycheck.dependency that return types with arguments of type VulnerabilityModifier and TypeMethodDescriptionDependency.getSuppressedVulnerabilities()Get an unmodifiable set of suppressedVulnerabilities.Dependency.getSuppressedVulnerabilities(boolean sorted) Get an unmodifiable, optionally sorted. set of suppressedVulnerabilities.Dependency.getVulnerabilities()Get the unmodifiable sorted set of vulnerabilities.Dependency.getVulnerabilities(boolean sorted) Get the unmodifiable list of vulnerabilities; optionally sorted.Methods in org.owasp.dependencycheck.dependency with parameters of type VulnerabilityModifier and TypeMethodDescriptionvoidDependency.addSuppressedVulnerability(Vulnerability vulnerability) Adds a vulnerability to the set of suppressed vulnerabilities.voidDependency.addVulnerability(Vulnerability vulnerability) Adds a vulnerability to the dependency.intVulnerability.compareTo(@NonNull Vulnerability o) Compares two vulnerabilities.
Natural order of vulnerabilities is defined as decreasing in severity and alphabetically by name for equal severity.voidDependency.removeVulnerability(Vulnerability v) Removes the given vulnerability from the list.Method parameters in org.owasp.dependencycheck.dependency with type arguments of type VulnerabilityModifier and TypeMethodDescriptionvoidDependency.addSuppressedVulnerabilities(List<Vulnerability> vulns) Add a list of suppressed vulnerabilities to the collection.voidDependency.addVulnerabilities(List<Vulnerability> vulnerabilities) Adds a list of vulnerabilities to the dependency.