class Intrigue::Ident::Check::Blueimp

Public Instance Methods

generate_checks(url) click to toggle source
# File lib/checks/blueimp.rb, line 6
def generate_checks(url)
  [
    {
      :type => "application",
      :vendor => "blueimp",
      :product =>"JQuery File Upload",
      :match_details =>"match string in the page",
      :match_type => :content_body,
      :version => nil,
      :match_content =>  /jquery.fileupload/i,
      :paths => ["#{url}"]
    }
  ]
end