class Intrigue::Ident::Check::PhpMyAdmin

Public Instance Methods

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