Sha256: a9fe4f8efec048ad223a64945636883358e622660ef6c6172f0351dedafc7904

Contents?: true

Size: 1.42 KB

Versions: 6

Compression:

Stored size: 1.42 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
##

# Version 0.2
# removed :certainty=>100 & :name
# Version 0.3
# Uses :version=>//

WhatWeb::Plugin.define "SearchFitShoppingCart" do
  @author = "Andrew Horton"
  @version = "0.3"
  @description = "Commercial ecommerce system written in PHP"
  @website = "http://www.searchfit.com/shopping-cart-features.htm"

  # pretty basic plugin, only 1 example to work from

  # <META NAME="GENERATION-COPYRIGHT" CONTENT="This Website is generated by SearchFit Shopping Cart v8.11 and is protected by the law against reproducing or copying without a license.">
  # <a class="footer_link_system" target="_blank" style="font-size: 10px;" href="http://www.searchfit.com/enterprise-shopping-cart-software.htm" title="Shopping Cart Software SearchFit v8.11">Shopping Cart Software SearchFit v8.11</a>
  # js   new SearchFitAnalytics("

  @matches = [
    { text: "This Website is generated by SearchFit Shopping Cart" },
    { text: '<a class="footer_link_system" target="_blank" style="font-size: 10px;" href="http://www.searchfit.com/' },
    { text: 'new SearchFitAnalytics("' },
    { version: /This Website is generated by SearchFit Shopping Cart v([^ ]+)/, name: "version" }
  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simple_whatweb-0.4.1 lib/whatweb/plugins/searchfit-shopping-cart.rb
simple_whatweb-0.4.0 lib/whatweb/plugins/searchfit-shopping-cart.rb
simple_whatweb-0.3.0 lib/whatweb/plugins/searchfit-shopping-cart.rb
simple_whatweb-0.2.1 lib/whatweb/plugins/searchfit-shopping-cart.rb
simple_whatweb-0.2.0 lib/whatweb/plugins/searchfit-shopping-cart.rb
simple_whatweb-0.1.0 lib/whatweb/plugins/searchfit-shopping-cart.rb