Uses of Class
org.owasp.dependencycheck.dependency.VulnerableSoftware
-
Packages that use VulnerableSoftware 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. -
-
Uses of VulnerableSoftware in org.owasp.dependencycheck.data.nvdcve
Methods in org.owasp.dependencycheck.data.nvdcve with parameters of type VulnerableSoftware Modifier and Type Method Description java.lang.String
CveItemOperator. extractEcosystem(java.lang.String baseEcosystem, VulnerableSoftware parsedCpe)
Attempts to determine the ecosystem based on the vendor, product and targetSw. -
Uses of VulnerableSoftware in org.owasp.dependencycheck.dependency
Methods in org.owasp.dependencycheck.dependency that return VulnerableSoftware Modifier and Type Method Description VulnerableSoftware
VulnerableSoftwareBuilder. build()
Builds the CPE Object.VulnerableSoftware
Vulnerability. getMatchedVulnerableSoftware()
Get the value of matchedVulnerableSoftware.Methods in org.owasp.dependencycheck.dependency that return types with arguments of type VulnerableSoftware Modifier and Type Method Description java.util.Set<VulnerableSoftware>
Vulnerability. getVulnerableSoftware()
Get the value of vulnerableSoftware.java.util.List<VulnerableSoftware>
Vulnerability. getVulnerableSoftware(boolean sorted)
Returns a sorted list of vulnerable software.Methods in org.owasp.dependencycheck.dependency with parameters of type VulnerableSoftware Modifier and Type Method Description void
Vulnerability. addVulnerableSoftware(VulnerableSoftware software)
Adds an entry for vulnerable software.protected static boolean
VulnerableSoftware. compareVersions(VulnerableSoftware vs, java.lang.String targetVersion)
Evaluates the target against the version and version range checks: versionEndExcluding, versionStartExcluding versionEndIncluding, and versionStartIncluding.void
Vulnerability. setMatchedVulnerableSoftware(VulnerableSoftware software)
Sets the CPE that caused this vulnerability to be flagged.Method parameters in org.owasp.dependencycheck.dependency with type arguments of type VulnerableSoftware Modifier and Type Method Description void
Vulnerability. addVulnerableSoftware(java.util.Set<VulnerableSoftware> vulnerableSoftware)
Adds the vulnerableSoftware to the collection.
-