Sha256: f735310db8cb3fc0c6d0a9dfb8e507bddad890b40286cc8f0199e40e6ab99c0f
Contents?: true
Size: 1.53 KB
Versions: 6
Compression:
Stored size: 1.53 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 ## # Version 0.2 # 2016-04-18 # Andrew Horton # Moved HTTP header patterns from passive function to matches[] ## WhatWeb::Plugin.define "activeWeb-Content-Server" do @author = "Brendan Coles <bcoles@gmail.com>" # 2011-03-25 @version = "0.2" @description = "Content Server is a comprehensive, scalable content management platform for professional demands. It combines editorial system, website management and development environment for Web applications in one package." @website = "http://www.active-web.de/" # ShodanHQ results as at 2011-03-25 # # 19 for X-AwCache # Matches # @matches = [ # Version Detection # HTML Comment { version: /<!--[\s]+page generated with activeWeb contentserver R([\d\.]+)/ }, { version: /<!--[\s]+activeWeb cache extension R([\d\.]+)/ }, # HTML Comment { text: '<!-- AWNOCACHEBEGIN__AWNOCACHEBEGIN__AWNOCACHEBEGIN__AWNOCACHEBEGIN__AWNOCACHEBEGIN -->' }, # X-AwCache-* HTTP Server Header { name: "X-AwCache-FollowUp Header", text: "", search: "headers[x-awcache-followup]" }, { name: "X-AwCache-Command Header", text: "", search: "headers[x-awcache-command]" }, # Technology Detection { name: "X-AwCache-ScriptTechnology Header", string: /^.*$/, search: "headers[x-awcache-scripttechnology]" }, ] end
Version data entries
6 entries across 6 versions & 1 rubygems