Class: Google::Apis::SecuritycenterV1::Cve
- Inherits:
-
Object
- Object
- Google::Apis::SecuritycenterV1::Cve
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/securitycenter_v1/classes.rb,
lib/google/apis/securitycenter_v1/representations.rb,
lib/google/apis/securitycenter_v1/representations.rb
Overview
CVE stands for Common Vulnerabilities and Exposures. Information from the CVE record that describes this vulnerability.
Instance Attribute Summary collapse
-
#cvssv3 ⇒ Google::Apis::SecuritycenterV1::Cvssv3
Common Vulnerability Scoring System version 3.
-
#exploit_release_date ⇒ String
Date the first publicly available exploit or PoC was released.
-
#exploitation_activity ⇒ String
The exploitation activity of the vulnerability in the wild.
-
#first_exploitation_date ⇒ String
Date of the earliest known exploitation.
-
#id ⇒ String
The unique identifier for the vulnerability.
-
#impact ⇒ String
The potential impact of the vulnerability if it was to be exploited.
-
#observed_in_the_wild ⇒ Boolean
(also: #observed_in_the_wild?)
Whether or not the vulnerability has been observed in the wild.
-
#references ⇒ Array<Google::Apis::SecuritycenterV1::Reference>
Additional information about the CVE.
-
#upstream_fix_available ⇒ Boolean
(also: #upstream_fix_available?)
Whether upstream fix is available for the CVE.
-
#zero_day ⇒ Boolean
(also: #zero_day?)
Whether or not the vulnerability was zero day when the finding was published.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Cve
constructor
A new instance of Cve.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Cve
Returns a new instance of Cve.
1729 1730 1731 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1729 def initialize(**args) update!(**args) end |
Instance Attribute Details
#cvssv3 ⇒ Google::Apis::SecuritycenterV1::Cvssv3
Common Vulnerability Scoring System version 3.
Corresponds to the JSON property cvssv3
1678 1679 1680 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1678 def cvssv3 @cvssv3 end |
#exploit_release_date ⇒ String
Date the first publicly available exploit or PoC was released.
Corresponds to the JSON property exploitReleaseDate
1683 1684 1685 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1683 def exploit_release_date @exploit_release_date end |
#exploitation_activity ⇒ String
The exploitation activity of the vulnerability in the wild.
Corresponds to the JSON property exploitationActivity
1688 1689 1690 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1688 def exploitation_activity @exploitation_activity end |
#first_exploitation_date ⇒ String
Date of the earliest known exploitation.
Corresponds to the JSON property firstExploitationDate
1693 1694 1695 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1693 def first_exploitation_date @first_exploitation_date end |
#id ⇒ String
The unique identifier for the vulnerability. e.g. CVE-2021-34527
Corresponds to the JSON property id
1698 1699 1700 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1698 def id @id end |
#impact ⇒ String
The potential impact of the vulnerability if it was to be exploited.
Corresponds to the JSON property impact
1703 1704 1705 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1703 def impact @impact end |
#observed_in_the_wild ⇒ Boolean Also known as: observed_in_the_wild?
Whether or not the vulnerability has been observed in the wild.
Corresponds to the JSON property observedInTheWild
1708 1709 1710 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1708 def observed_in_the_wild @observed_in_the_wild end |
#references ⇒ Array<Google::Apis::SecuritycenterV1::Reference>
Additional information about the CVE. e.g. https://cve.mitre.org/cgi-bin/
cvename.cgi?name=CVE-2021-34527
Corresponds to the JSON property references
1715 1716 1717 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1715 def references @references end |
#upstream_fix_available ⇒ Boolean Also known as: upstream_fix_available?
Whether upstream fix is available for the CVE.
Corresponds to the JSON property upstreamFixAvailable
1720 1721 1722 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1720 def upstream_fix_available @upstream_fix_available end |
#zero_day ⇒ Boolean Also known as: zero_day?
Whether or not the vulnerability was zero day when the finding was published.
Corresponds to the JSON property zeroDay
1726 1727 1728 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1726 def zero_day @zero_day end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 |
# File 'lib/google/apis/securitycenter_v1/classes.rb', line 1734 def update!(**args) @cvssv3 = args[:cvssv3] if args.key?(:cvssv3) @exploit_release_date = args[:exploit_release_date] if args.key?(:exploit_release_date) @exploitation_activity = args[:exploitation_activity] if args.key?(:exploitation_activity) @first_exploitation_date = args[:first_exploitation_date] if args.key?(:first_exploitation_date) @id = args[:id] if args.key?(:id) @impact = args[:impact] if args.key?(:impact) @observed_in_the_wild = args[:observed_in_the_wild] if args.key?(:observed_in_the_wild) @references = args[:references] if args.key?(:references) @upstream_fix_available = args[:upstream_fix_available] if args.key?(:upstream_fix_available) @zero_day = args[:zero_day] if args.key?(:zero_day) end |