class Nexpose::XML::Vulnerability

Basic vulnerability information. Only includes ID, title, and severity.

Attributes

id[R]

The unique ID string for this vulnerability

severity[R]

How critical the vulnerability is on a scale of 1 to 10.

title[R]

The title of this vulnerability

Public Class Methods

new(id, title, severity) click to toggle source
# File lib/nexpose/vuln.rb, line 113
def initialize(id, title, severity)
  @id       = id
  @title    = title
  @severity = severity.to_i
end