class Spyse::Client::CVE
Public Instance Methods
get(cve_id)
click to toggle source
search(search_params, limit: nil, offset: nil)
click to toggle source
Lists CVEs
@see spyse.com/api#/cve/cve_search
@return [Hash]
# File lib/spyse/clients/cve.rb, line 26 def search(search_params, limit: nil, offset: nil) params = { search_params: search_params, limit: limit, offset: offset, }.compact _post("/cve/search", params) { |json| json } end