class Spyse::Client::CVE

Public Instance Methods

get(cve_id) click to toggle source

Lists CVE

@see spyse.com/api#/cve/cve

@param [String] cve_id MITRE CVE unique identifier.

@return [Hash]

# File lib/spyse/clients/cve.rb, line 15
def get(cve_id)
  _get("/cve/#{cve_id}") { |json| json }
end