class Intrigue::Ident::Check::Lithium

Public Instance Methods

generate_checks(url) click to toggle source
# File lib/checks/lithium.rb, line 6
def generate_checks(url)
  [
    {
      :type => "application",
      :vendor => "Lithium",
      :product =>"Lithium",
      :match_details =>"Lithium Community Management",
      :match_type => :content_cookies,
      :version => nil,
      :match_content =>  /LithiumVisitor/i,
      :paths => ["#{url}"]
    },
    {
      :type => "application",
      :vendor => "Lithium",
      :product =>"Lithium",
      :match_details =>"Lithium Community Management",
      :match_type => :content_cookies,
      :version => nil,
      :match_content =>  /LiSESSIONID/i,
      :paths => ["#{url}"]
    }
  ]
end