Sha256: 2540157cf45ca5085784321fc3d71ea7499d67d031ef2c052b78bdc4d70b485c
Contents?: true
Size: 1.25 KB
Versions: 6
Compression:
Stored size: 1.25 KB
Contents
# 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 "Webbler" do @author = "Brendan Coles <bcoles@gmail.com>" # 2011-04-05 @version = "0.1" @description = "The Webbler is a powerful tool to build new websites or add additional areas or functionality to your existing website. It is a Content Management System (CMS) and an Application Toolkit that we customise to suit your needs." @website = "http://www.tincan.co.uk/Webbler" # ShodanHQ results as at 2011-04-05 # # 1 for WebblerSession # Google results as at 2011-05-04 # # 122 for "Powered by the Webbler" # Dorks # @dorks = [ '"Powered by the Webbler"' ] # Matches # @matches = [ # Version Detection # Meta Generator { version: /<meta name="generator" content="webbler ([^\s]+) - http:\/\/tincan\.co\.uk\/webbler" \/?>/ }, ] # Passive # def passive(target) m = [] # Cookie m << { name: "WebblerSession Cookie" } if target.headers["set-cookie"] =~ /WebblerSession=/ # Return passive matches m end end
Version data entries
6 entries across 6 versions & 1 rubygems