Class: Intrigue::Ident::Check::Lotus

Inherits:
Base
  • Object
show all
Defined in:
lib/checks/lotus.rb

Instance Method Summary collapse

Methods inherited from Base

inherited

Instance Method Details

#generate_checks(url) ⇒ Object



6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/checks/lotus.rb', line 6

def generate_checks(url)
  [
    {
      :type => "application",
      :vendor => "Lotus",
      :product =>"Domino",
      :match_details =>"Lotus Domino",
      :match_type => :content_headers,
      :version => nil,
      :match_content =>  /server: Lotus-Domino/i,
      :examples => [
        "https://12.237.144.251:443"
      ],
      :paths => ["#{url}"]
    }
  ]
end