# 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 "Avaya-Secure-Router" do @author = "Brendan Coles " # 2012-08-26 @version = "0.1" @description = "Avaya Secure Router - Hompage: http://www.avaya.com/usa/products/category--branch-routers" # ShodanHQ results as at 2012-08-26 # # 19 for "Avaya Http Server v" # Matches # @matches = [ # Model Detection # Also used by other manufacturers { certainty: 25, model: /Router Model: ()?([^\s^<]+)[\s]*( )?<\/b><\//, offset: 1 }, # td class="greytitle" { text: 'About Avaya Secure Router' }, # Telnet link # Also used by other manufacturers { certainty: 25, text: ' Telnet' }, # Footer { text: 'Avaya Secure Router' }, # Server Header # Version Detection { search: "headers[server]", version: /^Avaya Http Server v([^\s]+)$/ }, ] end