Class: Intrigue::Ident::Check::Ivanti

Inherits:
Base
  • Object
show all
Defined in:
lib/checks/ivanti.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
23
# File 'lib/checks/ivanti.rb', line 6

def generate_checks(url)
  [
    {
      :type => "application",
      :vendor => "Ivanti",
      :tags => [],
      :product =>"LANDESK Appliance",
      :match_details =>"matched title",
      :match_type => :content_body,
      :version => nil,
      :references => ["https://community.ivanti.com/community/all-products/systems/cloudservices"],
      :match_content =>  /<title>LANDESK\(R\) Cloud Services Appliance/i,
      :examples => ["https://techcentral.hormel.com/"],
      :verify => ["aG9ybWVsZm9vZHMjSW50cmlndWU6OkVudGl0eTo6VXJpI2h0dHBzOi8vdGVjaGNlbnRyYWwuaG9ybWVsLmNvbTo0NDM="],
      :paths => ["#{url}"]
    }
  ]
end