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
/// The description is a plain language field that describes the vulnerability with sufficient detail as to demonstrate that the vulnerability is unique.
44
+
/// </summary>
45
+
/// <remarks>
46
+
/// The description field is intentionally truncated to maximum 300 characters.
47
+
/// </remarks>
48
+
[MaxLength(300)]
49
+
[Required]
50
+
publicstringDescription{get;set;}
51
+
52
+
/// <summary>
53
+
/// Gets or sets the last-modified date for the entity.
54
+
/// </summary>
55
+
publicDateTimeLastModifiedDate{get;set;}
56
+
57
+
/// <summary>
58
+
/// Gets or sets the date this CVE entity was first published.
59
+
/// </summary>
60
+
publicDateTimePublishedDate{get;set;}
61
+
62
+
/// <summary>
63
+
/// Gets or sets whether the <see cref="Cve"/> is publicly listed.
64
+
/// An unlisted CVE is no longer available for reference.
65
+
/// Any <see cref="PackageDeprecation"/>s referencing an unlisted CVE will maintain existing references.
66
+
/// </summary>
67
+
publicboolListed{get;set;}
68
+
69
+
/// <summary>
70
+
/// Gets or sets the status of the <see cref="Cve"/>.
71
+
/// </summary>
72
+
[Required]
73
+
publicCveStatusStatus{get;set;}
74
+
75
+
/// <summary>
76
+
/// Gets or sets the CVSS rating for this <see cref="Cve"/> as determined by the NVD.
77
+
/// </summary>
78
+
/// <remarks>
79
+
/// CVSS ratings are from 0.0 to 10.0 and have a single point of precision.
/// A CVE Entry is marked as "RESERVED" when it has been reserved for use by a CVE Numbering Authority (CNA) or security researcher,
50
+
/// but the details of it are not yet populated.
51
+
/// A CVE Entry can change from the RESERVED state to being populated at any time based on a number of factors both internal and external to the CVE List.
52
+
/// Once the CVE Entry is populated with details on the CVE List, it will become available in the U.S. National Vulnerability Database (NVD).
/// When one party disagrees with another party's assertion that a particular issue in software is a vulnerability,
59
+
/// a CVE Entry assigned to that issue may be designated as being "DISPUTED".
60
+
/// In these cases, CVE is making no determination as to which party is correct.
61
+
/// Instead, CVE makes note of this dispute and try to offer any public references that will better inform those trying to understand the facts of the issue.
0 commit comments