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##
7Plugin.define "ECShop" do
8author "Brendan Coles <bcoles@gmail.com>" # 2011-03-18
9version "0.1"
10description "Ecshop is an Open Source Ecommerce Platform"
11website "http://www.ecshop.org/"
12
13# Google results as at 2011-03-18 #
14# 485 for "powered by ECSHOP"
15
16# Dorks #
17dorks [
18'"powered by ECSHOP"'
19]
20
21
22
23# Matches #
24matches [
25
26# Title
27{ :certainty=>25, :regexp=>/<title>[^<]+ - Powered by ECShop<\/title>/ },
28
29# Version Detection # Meta Generator
30{ :version=>/<meta name="Generator" content="ECSHOP v([\d\.]+)" \/>/ },
31
32]
33
34end
35
36
37