Class: Nexpose::ScanData
- Inherits:
-
Object
- Object
- Nexpose::ScanData
- Defined in:
- lib/nexpose/scan.rb
Overview
Minimal scan data object. Unlike ScanSummary, these objects don’t collect vulnerability data, which can be rather verbose and isn’t useful for many automation scenarios.
Direct Known Subclasses
Instance Attribute Summary collapse
-
#end_time ⇒ Object
readonly
The scan finish time.
-
#engine_id ⇒ Object
readonly
The Engine ID the scan was dispatched to.
-
#scan_id ⇒ Object
readonly
The Scan ID of the Scan.
-
#site_id ⇒ Object
readonly
The site that was scanned.
-
#start_time ⇒ Object
readonly
The scan start time.
-
#status ⇒ Object
readonly
The scan status.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(scan_id, site_id, engine_id, status, start_time, end_time) ⇒ ScanData
constructor
Constructor.
Constructor Details
#initialize(scan_id, site_id, engine_id, status, start_time, end_time) ⇒ ScanData
Constructor
503 504 505 506 507 508 509 510 |
# File 'lib/nexpose/scan.rb', line 503 def initialize(scan_id, site_id, engine_id, status, start_time, end_time) @scan_id = scan_id @site_id = site_id @engine_id = engine_id @status = status @start_time = start_time @end_time = end_time end |
Instance Attribute Details
#end_time ⇒ Object (readonly)
The scan finish time
497 498 499 |
# File 'lib/nexpose/scan.rb', line 497 def end_time @end_time end |
#engine_id ⇒ Object (readonly)
The Engine ID the scan was dispatched to.
493 494 495 |
# File 'lib/nexpose/scan.rb', line 493 def engine_id @engine_id end |
#scan_id ⇒ Object (readonly)
The Scan ID of the Scan
489 490 491 |
# File 'lib/nexpose/scan.rb', line 489 def scan_id @scan_id end |
#site_id ⇒ Object (readonly)
The site that was scanned.
491 492 493 |
# File 'lib/nexpose/scan.rb', line 491 def site_id @site_id end |
#start_time ⇒ Object (readonly)
The scan start time
495 496 497 |
# File 'lib/nexpose/scan.rb', line 495 def start_time @start_time end |
#status ⇒ Object (readonly)
The scan status. One of: running|finished|stopped|error|dispatched|paused|aborted|uknown
500 501 502 |
# File 'lib/nexpose/scan.rb', line 500 def status @status end |
Class Method Details
.parse(xml) ⇒ Object
512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 |
# File 'lib/nexpose/scan.rb', line 512 def self.parse(xml) # Start time can be empty in some error conditions. start_time = nil unless xml.attributes['startTime'] == '' start_time = DateTime.parse(xml.attributes['startTime'].to_s).to_time # Timestamp is UTC, but parsed as local time. start_time -= start_time.gmt_offset end # End time is often not present, since reporting on running scans. end_time = nil if xml.attributes['endTime'] end_time = DateTime.parse(xml.attributes['endTime'].to_s).to_time # Timestamp is UTC, but parsed as local time. end_time -= end_time.gmt_offset end ScanData.new(xml.attributes['scan-id'].to_i, xml.attributes['site-id'].to_i, xml.attributes['engine-id'].to_i, xml.attributes['status'], start_time, end_time) end |