Class: ProgressKempLoadMaster

Inherits:
Fingerprinter::Technologies show all
Defined in:
lib/fingerprinter/technologies/softwares/progress_kemp_load_master.rb

Overview

Progress Kemp Load Master Detection

Constant Summary collapse

BODY_CONTENT_REGEX =
[
  /LoadMaster/
].freeze

Instance Attribute Summary

Attributes inherited from Fingerprinter::Technologies

#http_client, #results

Class Method Summary collapse

Methods inherited from Fingerprinter::Technologies

#initialize, kb, meta_detection, response_headers_check, #run, title_detection, whole_body_check

Constructor Details

This class inherits a constructor from Fingerprinter::Technologies

Class Method Details

.run(data) ⇒ Object



9
10
11
12
13
14
# File 'lib/fingerprinter/technologies/softwares/progress_kemp_load_master.rb', line 9

def self.run(data)
  return unless title_detection(data[:doc], 'Configuration') &&
                whole_body_check(data[:response], BODY_CONTENT_REGEX)

  'Progress Kemp Load Master'
end