1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51
|
# coding: ascii-8bit
##
# 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.3 # 2011-03-30 # Brendan Coles <bcoles@gmail.com>
# Updated regex to decrease false positives & merged EscenicEngine5 plugin
##
Plugin.define "Escenic" do
author "Erik Inge Bolsø <knan+whatweb@redpill-linpro.com> & nikosk <nk@dsigned.gr>"
version "0.3"
description "Escenic is a commercial CMS popular in the Nordic region."
website "http://escenic.com/"
# Google results as at 2011-03-19 #
# 273 for filetype:ece
# Dorks #
dorks [
'filetype:ece'
]
# Matches #
matches [
# HTML Comment
{ :text=>'<!-- Start Escenic Analysis Engine client script -->' },
# Meta Author
{ :certainty=>75, :text=>'<meta name="author" content="Escenic AS"/>' },
# Search Form
{ :certainty=>25, :regexp=>/<form action="\/sok\/" id="[^"]+" method="get" accept-charset="utf-8"[^>]*>/ },
# GHDB # Filetype
{ :certainty=>75, :ghdb=>"filetype:ece inurl:article" },
# escenic 4.x image storage structure
{ :certainty=>25, :regexp=>/<img[^>]+src="[^"^>]+\/archive\/\d{5}\/[^"^>]+"[^>]*>/ },
# escenic .ece url match
{ :certainty=>25, :regexp=>/<a[^>]+href="[^"^>]+\/article[\d]{5,10}\.ece">[^<]*<\/a>/ },
]
end
|