Class VulnerableSoftware
- java.lang.Object
-
- us.springett.parsers.cpe.Cpe
-
- org.owasp.dependencycheck.dependency.VulnerableSoftware
-
- All Implemented Interfaces:
java.io.Serializable,java.lang.Comparable,us.springett.parsers.cpe.ICpe
@ThreadSafe public class VulnerableSoftware extends us.springett.parsers.cpe.Cpe implements java.io.SerializableA record containing information about vulnerable software. This is referenced from a vulnerability.- Author:
- Jeremy Long
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description VulnerableSoftware(us.springett.parsers.cpe.values.Part part, java.lang.String vendor, java.lang.String product, java.lang.String version, java.lang.String update, java.lang.String edition, java.lang.String language, java.lang.String swEdition, java.lang.String targetSw, java.lang.String targetHw, java.lang.String other, java.lang.String versionEndExcluding, java.lang.String versionEndIncluding, java.lang.String versionStartExcluding, java.lang.String versionStartIncluding, boolean vulnerable)Constructs a new immutable VulnerableSoftware object that represents the Well Form Named defined in the CPE 2.3 specification.
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description intcompareTo(@NotNull java.lang.Object o)protected static booleancompareUpdateAttributes(java.lang.String left, java.lang.String right)Performs the same operation as Cpe.compareAttributes() - except additional rules are applied to match a1 to alpha1 and the comparison of update attributes will also return true if the only difference between the strings is an underscore or hyphen.protected booleancompareVersionRange(java.lang.String targetVersion)Evaluates the target against the version and version range checks: versionEndExcluding, versionStartExcluding versionEndIncluding, and versionStartIncluding.protected static booleancompareVersions(VulnerableSoftware vs, java.lang.String targetVersion)Evaluates the target against the version and version range checks: versionEndExcluding, versionStartExcluding versionEndIncluding, and versionStartIncluding.booleanequals(java.lang.Object obj)java.lang.StringgetVersionEndExcluding()Returns the versionEndExcluding.java.lang.StringgetVersionEndIncluding()Returns the versionEndIncluding.java.lang.StringgetVersionStartExcluding()Returns the versionStartExcluding.java.lang.StringgetVersionStartIncluding()Returns the versionStartIncluding.inthashCode()booleanisVulnerable()Returns the value of vulnerable.booleanmatchedBy(us.springett.parsers.cpe.ICpe target)Determines if the target VulnerableSoftware matches the VulnerableSoftware.booleanmatches(us.springett.parsers.cpe.ICpe target)Determines if the VulnerableSoftware matches the given target VulnerableSoftware.static booleantestMatch(us.springett.parsers.cpe.ICpe left, us.springett.parsers.cpe.ICpe right)Tests if the left matches the right.java.lang.StringtoString()-
Methods inherited from class us.springett.parsers.cpe.Cpe
compareAttribute, compareAttribute, compareAttributes, compareAttributes, compareVersions, getEdition, getLanguage, getOther, getPart, getProduct, getSwEdition, getTargetHw, getTargetSw, getUpdate, getVendor, getVersion, getWellFormedEdition, getWellFormedLanguage, getWellFormedOther, getWellFormedProduct, getWellFormedSwEdition, getWellFormedTargetHw, getWellFormedTargetSw, getWellFormedUpdate, getWellFormedVendor, getWellFormedVersion, toCpe22Uri, toCpe23FS
-
-
-
-
Constructor Detail
-
VulnerableSoftware
public VulnerableSoftware(us.springett.parsers.cpe.values.Part part, java.lang.String vendor, java.lang.String product, java.lang.String version, java.lang.String update, java.lang.String edition, java.lang.String language, java.lang.String swEdition, java.lang.String targetSw, java.lang.String targetHw, java.lang.String other, java.lang.String versionEndExcluding, java.lang.String versionEndIncluding, java.lang.String versionStartExcluding, java.lang.String versionStartIncluding, boolean vulnerable) throws us.springett.parsers.cpe.exceptions.CpeValidationExceptionConstructs a new immutable VulnerableSoftware object that represents the Well Form Named defined in the CPE 2.3 specification. Specifyingnullwill be set to the defaultLogicalValue.ANY. All values passed in must be well formed (i.e. special characters quoted with a backslash).- Parameters:
part- the type of entry: application, operating system, or hardwarevendor- the vendor of the CPE entryproduct- the product of the CPE entryversion- the version of the CPE entryupdate- the update of the CPE entryedition- the edition of the CPE entrylanguage- the language of the CPE entryswEdition- the swEdition of the CPE entrytargetSw- the targetSw of the CPE entrytargetHw- the targetHw of the CPE entryother- the other of the CPE entryversionEndExcluding- the ending range, excluding the specified version, for matching vulnerable softwareversionEndIncluding- the ending range, including the specified version, for matching vulnerable softwareversionStartExcluding- the starting range, excluding the specified version, for matching vulnerable softwareversionStartIncluding- the starting range, including the specified version, for matching vulnerable softwarevulnerable- whether or not this represents a vulnerable software item- Throws:
us.springett.parsers.cpe.exceptions.CpeValidationException- thrown if one of the CPE entries is invalid- See Also:
- CPE 2.3
-
-
Method Detail
-
compareTo
public int compareTo(@NotNull @NotNull java.lang.Object o)- Specified by:
compareToin interfacejava.lang.Comparable- Overrides:
compareToin classus.springett.parsers.cpe.Cpe
-
hashCode
public int hashCode()
- Overrides:
hashCodein classus.springett.parsers.cpe.Cpe
-
equals
public boolean equals(java.lang.Object obj)
- Overrides:
equalsin classus.springett.parsers.cpe.Cpe
-
matches
public boolean matches(us.springett.parsers.cpe.ICpe target)
Determines if the VulnerableSoftware matches the given target VulnerableSoftware. This does not follow the CPE 2.3 Specification exactly as there are cases where undefined comparisons will result in either true or false. For instance, 'ANY' will match 'm+wild cards' and NA will return false when the target has 'm+wild cards'.
For vulnerable software matching, the implementation also takes into account version ranges as specified within the NVD data feeds.
- Specified by:
matchesin interfaceus.springett.parsers.cpe.ICpe- Overrides:
matchesin classus.springett.parsers.cpe.Cpe- Parameters:
target- the target CPE to evaluate- Returns:
trueif the CPE matches the target; otherwisefalse
-
compareUpdateAttributes
protected static boolean compareUpdateAttributes(java.lang.String left, java.lang.String right)Performs the same operation as Cpe.compareAttributes() - except additional rules are applied to match a1 to alpha1 and the comparison of update attributes will also return true if the only difference between the strings is an underscore or hyphen.- Parameters:
left- the left value to compareright- the right value to compare- Returns:
trueif there is a match; otherwisefalse
-
testMatch
public static boolean testMatch(us.springett.parsers.cpe.ICpe left, us.springett.parsers.cpe.ICpe right)Tests if the left matches the right.- Parameters:
left- the cpe to compareright- the cpe to check- Returns:
trueif a match is found; otherwisefalse
-
matchedBy
public boolean matchedBy(us.springett.parsers.cpe.ICpe target)
Determines if the target VulnerableSoftware matches the VulnerableSoftware. This does not follow the CPE 2.3 Specification exactly as there are cases where undefined comparisons will result in either true or false. For instance, 'ANY' will match 'm+wild cards' and NA will return false when the target has 'm+wild cards'.
For vulnerable software matching, the implementation also takes into account version ranges as specified within the NVD data feeds.
- Specified by:
matchedByin interfaceus.springett.parsers.cpe.ICpe- Overrides:
matchedByin classus.springett.parsers.cpe.Cpe- Parameters:
target- the VulnerableSoftware to evaluate- Returns:
trueif the target CPE matches CPE; otherwisefalse
-
compareVersionRange
protected boolean compareVersionRange(java.lang.String targetVersion)
Evaluates the target against the version and version range checks: versionEndExcluding, versionStartExcluding versionEndIncluding, and versionStartIncluding.- Parameters:
targetVersion- the version to compare- Returns:
trueif the target version is matched; otherwisefalse
-
compareVersions
protected static boolean compareVersions(VulnerableSoftware vs, java.lang.String targetVersion)
Evaluates the target against the version and version range checks: versionEndExcluding, versionStartExcluding versionEndIncluding, and versionStartIncluding.- Parameters:
vs- a reference to the vulnerable software to comparetargetVersion- the version to compare- Returns:
trueif the target version is matched; otherwisefalse
-
getVersionEndExcluding
public java.lang.String getVersionEndExcluding()
Returns the versionEndExcluding.- Returns:
- the versionEndExcluding
-
getVersionEndIncluding
public java.lang.String getVersionEndIncluding()
Returns the versionEndIncluding.- Returns:
- the versionEndIncluding
-
getVersionStartExcluding
public java.lang.String getVersionStartExcluding()
Returns the versionStartExcluding.- Returns:
- the versionStartExcluding
-
getVersionStartIncluding
public java.lang.String getVersionStartIncluding()
Returns the versionStartIncluding.- Returns:
- the versionStartIncluding
-
isVulnerable
public boolean isVulnerable()
Returns the value of vulnerable.- Returns:
- the value of vulnerable
-
toString
public java.lang.String toString()
- Overrides:
toStringin classus.springett.parsers.cpe.Cpe
-
-