1##
2# This file is part of WhatWeb and may be subject to
3# redistribution and commercial restrictions. Please see the WhatWeb
4# web site for more information on licensing and terms of use.
5# http://www.morningstarsecurity.com/research/whatweb
6##
7# Version 0.2 # 2016-04-18 # Andrew Horton
8# Moved HTTP header patterns from passive function to matches[]
9##
10Plugin.define "activeWeb-Content-Server" do
11author "Brendan Coles <bcoles@gmail.com>" # 2011-03-25
12version "0.2"
13description "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."
14website "http://www.active-web.de/"
15
16# ShodanHQ results as at 2011-03-25 #
17# 19 for X-AwCache
18
19# Matches #
20matches [
21
22# Version Detection # HTML Comment
23{ :version=>/<!--[\s]+page generated with activeWeb contentserver R([\d\.]+)/ },
24{ :version=>/<!--[\s]+activeWeb cache extension R([\d\.]+)/ },
25
26# HTML Comment
27{ :text=>'<!-- AWNOCACHEBEGIN__AWNOCACHEBEGIN__AWNOCACHEBEGIN__AWNOCACHEBEGIN__AWNOCACHEBEGIN -->' },
28
29# X-AwCache-* HTTP Server Header
30{ :name=>"X-AwCache-FollowUp Header", :text=>"", :search=>"headers[x-awcache-followup]" },
31{ :name=>"X-AwCache-Command Header", :text=>"", :search=>"headers[x-awcache-command]" },
32
33# Technology Detection
34{ :name=>"X-AwCache-ScriptTechnology Header", :string=>/^.*$/ ,:search=>"headers[x-awcache-scripttechnology]" },
35
36]
37
38
39end
40
41