# 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 "WebspotBlogging" do @author = "Brendan Coles " # 2010-08-21 @version = "0.1" @description = "Old blog" @website = "http://www.webspot.co.uk/" # 13 results for "powered by WebspotBlogging" @ 2010-08-21 def passive(target) m = [] if /Powered By WebspotBlogging<\/a> v[\d\.]+
/.match?(target.body) version = target.body.scan(/Powered By
WebspotBlogging<\/a> v([\d\.]+)
/)[0][0] m << { version: version } end m end end