class Intrigue::Ident::Check::Plesk
Public Instance Methods
generate_checks(url)
click to toggle source
# File lib/checks/plesk.rb, line 6 def generate_checks(url) [ { :type => "application", :vendor =>"Plesk", :product =>"Plesk", :match_details => "page title", :match_type => :content_body, :references => ["https://en.wikipedia.org/wiki/Plesk"], :match_content => /<title>Plesk (.*?)<\/title>/, :version => nil, :dynamic_version => lambda { |x| _first_body_capture(x,/<title>Plesk (.*?)<\/title>/) }, :examples => ["https://158.85.134.112:8443"], :verify => ["aWJtI0ludHJpZ3VlOjpFbnRpdHk6OlVyaSNodHRwczovLzE1OC44NS4xMzQuMTEyOjg0NDM="], :paths => ["#{url}"] }, { :type => "application", :vendor =>"Plesk", :product =>"Plesk", :match_details => "server header", :match_type => :content_headers, :references => ["https://en.wikipedia.org/wiki/Plesk"], :match_content => /server: sw-cp-server/, :version => nil, :examples => ["https://158.85.134.112:8443"], :verify => ["aWJtI0ludHJpZ3VlOjpFbnRpdHk6OlVyaSNodHRwczovLzE1OC44NS4xMzQuMTEyOjg0NDM="], :paths => ["#{url}"] } ] end