Show / Hide Table of Contents

Class CveDetails

Details on a CVE.

Inheritance
object
CveDetails
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.VulnerabilityscanningService.Models
Assembly: OCI.DotNetSDK.Vulnerabilityscanning.dll
Syntax
public class CveDetails

Properties

CveReference

Declaration
[Required(ErrorMessage = "CveReference is required.")]
[JsonProperty(PropertyName = "cveReference")]
public string CveReference { get; set; }
Property Value
Type Description
string

CVE ID.

Remarks

Required

Cvss3

Declaration
[Required(ErrorMessage = "Cvss3 is required.")]
[JsonProperty(PropertyName = "cvss3")]
public string Cvss3 { get; set; }
Property Value
Type Description
string

CVSS 3 Score.

Remarks

Required

Description

Declaration
[JsonProperty(PropertyName = "description")]
public string Description { get; set; }
Property Value
Type Description
string

CVE description.

Exploitable

Declaration
[JsonProperty(PropertyName = "exploitable")]
public string Exploitable { get; set; }
Property Value
Type Description
string

Can this vulnerability be exploited.

Impact

Declaration
[JsonProperty(PropertyName = "impact")]
public string Impact { get; set; }
Property Value
Type Description
string

Impact on resource if this vulnerability is exploited.

Patchable

Declaration
[JsonProperty(PropertyName = "patchable")]
public string Patchable { get; set; }
Property Value
Type Description
string

Can this vulnerability be patched.

ReferenceUrl

Declaration
[JsonProperty(PropertyName = "referenceUrl")]
public string ReferenceUrl { get; set; }
Property Value
Type Description
string

Reference link to know more about this vulnerability.

RelatedCveReference

Declaration
[JsonProperty(PropertyName = "relatedCveReference")]
public string RelatedCveReference { get; set; }
Property Value
Type Description
string

ID of related CVE, if applicable.

Solution

Declaration
[JsonProperty(PropertyName = "solution")]
public string Solution { get; set; }
Property Value
Type Description
string

Recommended solution to fix this vulnerability.

Threat

Declaration
[JsonProperty(PropertyName = "threat")]
public string Threat { get; set; }
Property Value
Type Description
string

Threat this item poses to resource.

TimePublished

Declaration
[Required(ErrorMessage = "TimePublished is required.")]
[JsonProperty(PropertyName = "timePublished")]
public DateTime? TimePublished { get; set; }
Property Value
Type Description
DateTime?

Date/time the CVE was published.

Remarks

Required

TimeUpdated

Declaration
[Required(ErrorMessage = "TimeUpdated is required.")]
[JsonProperty(PropertyName = "timeUpdated")]
public DateTime? TimeUpdated { get; set; }
Property Value
Type Description
DateTime?

Date/time the CVE was last modified.

Remarks

Required

Title

Declaration
[Required(ErrorMessage = "Title is required.")]
[JsonProperty(PropertyName = "title")]
public string Title { get; set; }
Property Value
Type Description
string

Vulnerability title.

Remarks

Required

In this article
Back to top