class Intrigue::Ident::Check::Zimbra

Public Instance Methods

generate_checks(url) click to toggle source
# File lib/checks/zimbra.rb, line 6
def generate_checks(url)
  [
    {
      :type => "service",
      :vendor =>"Zimbra",
      :product =>"Server",
      :match_details =>"login page for zimbra",
      :match_type => :content_body,
      :match_content =>  /<title>Zimbra Web Client Sign In/i,
      :examples => ["https://219.84.198.177:443"],
      :paths => ["#{url}"]
    }
  ]
end