class Intrigue::Ident::Check::Joomla

Public Instance Methods

generate_checks(url) click to toggle source
# File lib/checks/joomla.rb, line 6
def generate_checks(url)
  [
    {
      :type => "application",
      :vendor => "Joomla!",
      :tags => ["CMS"],
      :product =>"Joomla!",
      :match_details =>"Known Joomla Admin Page",
      :match_type => :content_body,
      :version => nil,
      :match_content =>  /files_joomla/i,
      :references => ["https://twitter.com/GreyNoiseIO/status/987547246538391552"],
      :paths => ["#{url}/administrator/manifests/files/joomla.xml"]
    }
  ]
end