Sha256: e50049048833af3ed751e4574f42dc39976cda3a5abb623230c0b976a8c303e7
Contents?: true
Size: 1.86 KB
Versions: 6
Compression:
Stored size: 1.86 KB
Contents
# frozen_string_literal: true ## # 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 ## ############################ # WhatWeb plugin by NetAgence.com ############################ WhatWeb::Plugin.define "PrestaShop" do @author = "Chris, NetAgence.com" @version = "1.0" @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 -->/ } # {: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
Version data entries
6 entries across 6 versions & 1 rubygems