Sha256: f23dc437872b66a25d661dab5f1c9cd594c440908a8bf00df76dbec01242b24d
Contents?: true
Size: 1.22 KB
Versions: 6
Compression:
Stored size: 1.22 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.define "Open-Freeway" do @author = "Brendan Coles <bcoles@gmail.com>" # 2010-06-05 @version = "0.1" @description = "Freeway is by far the largest and most fully featured Open Source eCommerce platform. It doesn't just sell products but extends to sell in some very fancy new ways and is very configurable." @website = "http://www.openfreeway.org/" # Dorks # @dorks = [ '"Copyright * Zacware" "Welcome Guest" "Advanced Search" "Shopping Cart" "Checkout"' ] # Matches # @matches = [ { certainty: 75, ghdb: '+"Copyright * Zacware" +"Welcome Guest" +"Advanced Search" +"Shopping Cart" +"Checkout"' }, { name: 'default html', text: '<body marginwidth="0" marginheight="0" topmargin="0" bottommargin="0" leftmargin="0" rightmargin="0" onLoad="javascript:move_cart()">' } ] def passive(target) m = [] m << { name: "fEcom Cookie", certainty: 75 } if target.headers["set-cookie"] =~ /fEcom=/ m end end
Version data entries
6 entries across 6 versions & 1 rubygems