You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Around one thousand affected products have a version specifier where version == lessThanOrEqual. This might be because of transformation from v4 schema. This situation in v5 schema however causes incomplete versioning information, since according to lessThanOrEqual documentation the matched version should be between closed interval [version, lessThanOrEqual], which when version == lessThanOrEqual covers only a single version. Usually descriptions of the CVE also specifies that earlier versions than version were affected, thus I believe this migration to be incorrect.
Some affected products have a version where version == lessThan + "*". This might be caused by v4 data containing version_affected == ">=". I am not sure what the correct transformation should be, but currently it produces strange result where the lessThan specifier might have a value for example 1.3.0*.
Problem a
Around one thousand affected products have a version specifier where
version == lessThanOrEqual
. This might be because of transformation from v4 schema. This situation in v5 schema however causes incomplete versioning information, since according to lessThanOrEqual documentation the matched version should be between closed interval[version, lessThanOrEqual]
, which whenversion == lessThanOrEqual
covers only a single version. Usually descriptions of the CVE also specifies that earlier versions thanversion
were affected, thus I believe this migration to be incorrect.Some examples:
Problem b
Some affected products have a version where
version == lessThan + "*"
. This might be caused by v4 data containingversion_affected == ">="
. I am not sure what the correct transformation should be, but currently it produces strange result where thelessThan
specifier might have a value for example1.3.0*
.Some examples:
Thank you for your input
The text was updated successfully, but these errors were encountered: