# 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 "Funkwerk-Gateway" do @author = "Brendan Coles " # 2011-11-24 @version = "0.1" @description = "Funkwerk Gateway" @website = "http://www.funkwerk-ec.com/" # Google results as at 2011-11-24 # # 36 for intitle:"Funkwerk * Home Page" "Initial Configuration" "Advanced Configuration" # Dorks # @dorks = [ 'intitle:"Funkwerk * Home Page" "Initial Configuration" "Advanced Configuration"' ] # Matches # @matches = [ # HTTP Header # Server { search: "headers[server]", regexp: /^fec\/[\d\.]+ \(Funkwerk BOSS\)$/ }, # / # System Name { string: /Welcome to your Funkwerk Gateway ([^<]+)<\/b>\.<\/font>
<\/td><\/tr><\/tbody><\/table><\/blockquote>/ }, # /state # System Name { url: "/state", string: /[\s]+System Name<\/TD>[\s]+([^<]+)<\/FONT>
<\/TD>/ }, # /state # Model Detection { url: "/state", model: /[\s]+Type of System<\/TD>[\s]+([^<]+)<\/FONT>
<\/TD>/ }, # /state # Version Detection { url: "/state", version: /[\s]+Software<\/TD>[\s]+V\.(.+) IPSec from [\d]{4}\/[\d]{2}\/[\d]{2} [\d]{2}:[\d]{2}:[\d]{2}<\/FONT>
<\/TD>/ }, ] end