class Intrigue::Ident::Check::Okta

Public Instance Methods

generate_checks(url) click to toggle source
# File lib/checks/okta.rb, line 6
def generate_checks(url)
  [
    {
      :type => "service",
      :vendor =>"Okta",
      :product =>"Okta",
      :match_details =>"okta auth",
      :version => nil,
      :match_type => :content_headers,
      :match_content =>  /x-okta-backend/i,
      :examples => ["http://autodiscover.westrsc.com:80"],
      :paths => ["#{url}"]
    }
  ]
end