class Intrigue::Ident::Check::Pfsense

Public Instance Methods

generate_checks(url) click to toggle source
# File lib/checks/pfsense.rb, line 6
def generate_checks(url)
  [
    {
      :type => "application",
      :vendor => "pfSense",
      :product =>"pfSense",
      :match_details => "unique body content",
      :version => nil,
      :match_type => :content_body,
      :match_content =>  /Login to pfSense/,
      :paths => ["#{url}"]
    }
  ]
end