Class: Nexpose::ExportCredential

Inherits:
Object
  • Object
show all
Defined in:
lib/nexpose/report.rb

Overview

DBExport credentials configuration object.

The user_id, password and realm attributes should ONLY be used if a security blob cannot be generated and the data is being transmitted/stored using external encryption (e.g., HTTPS).

Instance Attribute Summary collapse

Class Method Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(credential) ⇒ ExportCredential

Returns a new instance of ExportCredential.



580
581
582
# File 'lib/nexpose/report.rb', line 580

def initialize(credential)
  @credential = credential
end

Instance Attribute Details

#credentialObject

Security blob for exporting to a database.



574
575
576
# File 'lib/nexpose/report.rb', line 574

def credential
  @credential
end

#passwordObject

Returns the value of attribute password.



576
577
578
# File 'lib/nexpose/report.rb', line 576

def password
  @password
end

#realmObject

DB specific, usually the database name.



578
579
580
# File 'lib/nexpose/report.rb', line 578

def realm
  @realm
end

#user_idObject

Returns the value of attribute user_id.



575
576
577
# File 'lib/nexpose/report.rb', line 575

def user_id
  @user_id
end

Class Method Details

.parse(xml) ⇒ Object



594
595
596
597
598
599
600
601
602
603
604
# File 'lib/nexpose/report.rb', line 594

def self.parse(xml)
  xml.elements.each('//credentials') do |creds|
    credential = ExportCredential.new(creds.text)
    # The following attributes may not exist.
    credential.user_id = creds.attributes['userid']
    credential.password = creds.attributes['password']
    credential.realm = creds.attributes['realm']
    return credential
  end
  nil
end

Instance Method Details

#to_xmlObject



584
585
586
587
588
589
590
591
592
# File 'lib/nexpose/report.rb', line 584

def to_xml
  xml = '<credentials'
  xml << %( userid='#{@user_id}') if @user_id
  xml << %( password='#{@password}') if @password
  xml << %( realm='#{@realm}') if @realm
  xml << '>'
  xml << @credential if @credential
  xml << '</credentials>'
end