# frozen_string_literal: true ## # This file is part of WhatWeb and may be subject to # redistribution and commercial restrictions. Please see the WhatWeb # web site for more information on licensing and terms of use. # http://www.morningstarsecurity.com/research/whatweb ## WhatWeb::Plugin.define "APC-InfraStruXure-Manager" do @author = "Brendan Coles " # 2011-06-01 @version = "0.1" @description = "Modular, adaptable, on-demand solutions for data centers. InfraStruxure is a scalable and adaptable data center IT room architecture that dramatically reduces time and complexity from concept and design through installation." @website = "http://www.apc.com/products/infrastruxure/index.cfm" # Matches # @matches = [ # Title { certainty: 75, text: 'APC | InfraStruXure Manager' }, # ldrISX.jpg { text: 'ISX Manager' }, # Xlogo_Layer-1.gif { text: '' }, ] # Passive # def passive(target) m = [] # Location if target.headers["server"] =~ /^Acme\.Serve/ && @status.to_s =~ /^302$/ && target.headers["location"] =~ /^isx\.html$/ m << { certainty: 25, name: "isx.html redirect" } end # Return passive matches m end end