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 52 53 54 55 56 57 58
|
##
# 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.
# https://morningstarsecurity.com/research/whatweb
##
Plugin.define do
name "PrestaShop"
authors [
"Chris@NetAgence.com", # WhatWeb plugin by NetAgence.com
"Bhavin Senjaliya <bhavin.senjaliya@gmail.com>", # v0.2 # Reduced version from 1.0 to 0.2.. Added Bhavin's cookie.
]
version "0.2"
description "Ecommerce CMS Prestashop."
website "http://www.prestashop.com/"
# Google results as at 2011-07-19 #
# 989 for inurl:id_cms
# Dorks #
dorks [
'inurl:id_cms'
]
# identifying strings
# <meta name="description" content="Boutique propulsée par PrestaShop" />
# <meta name="generator" content="PrestaShop" />
# <meta name="description" content="Shop powered by PrestaShop" />
# Matches #
matches [
{:name=>"PrestaShop-powered meta generator",
:regexp=>/<meta name="generator"[^>]*content="PrestaShop/},
{:string=>"FR",
:name=>"PrestaShop-Powered meta description",
:regexp=>/<meta name="description"[^>]*content="par PrestaShop/},
{:string=>"EN",
:name=>"PrestaShop-Powered meta description",
:regexp=>/<meta name="description"[^>]*content="Shop powered by PrestaShop/},
{:name=>"html comment",
:regexp=>/<!-- \/Block permanent links module HEADER -->/},
# Cookie
{ :search => "headers[set-cookie]", :regexp => /PrestaShop/, :name=>"PrestaShop cookie" },
#{:text=>"<meta name=\"description\" content=\"Boutique propulsée par PrestaShop\" />", :name=>"PrestaShop-Powered meta description (FR)"},
#{:text=>"<meta name=\"description\" content=\"Shop powered by PrestaShop\" />", :name=>"PrestaShop-Powered meta description (EN)"},
#{:text=>"<meta name=\"generator\" content=\"PrestaShop\" />", :name=>"PrestaShop-Powered meta generator"}
#{ :text=>'<!-- /Block permanent links module HEADER -->' }
]
end
|