class Intrigue::Ident::Check::Lotus

Public Instance Methods

generate_checks(url) click to toggle source
# 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