1# coding: ascii-8bit
2##
3# This file is part of WhatWeb and may be subject to
4# redistribution and commercial restrictions. Please see the WhatWeb
5# web site for more information on licensing and terms of use.
6# http://www.morningstarsecurity.com/research/whatweb
7##
8
9# Version 0.2 by Andrew Horton
10# removed VIEWSTATE match as it matches ASP.NET, removed :probability=>100
11# Version 0.3 by Andrew Horton - added version detection with EPiServer logos and more examples from http://www.episerver.com/en/Customers/
12
13Plugin.define "EPiServer" do
14author "Patrik Wallström"
15version "0.2"
16description "CMS from EPiServer - http://episerver.com/"
17
18
19
20matches [
21{:name=>"meta generator tag with EPiServer", :text=>"<meta name=\"GENERATOR\" content=\"EPiServer\" />"},
22{:name=>"EPiServer comment", :text=>"<!-- EPiServer -->"},
23
24{:text=>'src="/Util/javascript/episerverscriptmanager.js"'},
25
26# version six also contains the img for version 5. could be improved by making a def passive function
27{:url=>"/App_Themes/Default/Images/General/LoginBackground.gif", :md5=>"5a530899177854181da891894554478a", :version=>"4.x"},
28{:url=>"/App_Themes/Default/Images/General/LoginBackground.gif", :md5=>"7dea9dcf92792b1bf2bddfe71549dd19", :version=>"5.x-6.x"},
29{:url=>"/util/images/loginbackground.gif", :md5=>"5a530899177854181da891894554478a", :version=>"4.x"},
30{:url=>"/util/images/loginbackground.gif", :md5=>"7dea9dcf92792b1bf2bddfe71549dd19", :version=>"5.x-6.x"},
31{:url=>"/Util/images/EPiServerCMSLogo.png", :md5=>"066ab2c653211887d01e52bcc30293ba", :version=>"6.x"},
32{:url=>"/util/login.aspx", :text=>"<h1>Log in to EPiServer CMS 6", :version=>"6.x"}
33]
34
35
36end
37
38