# 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 "nopCommerce" do @author = "Brendan Coles " # 2011-03-14 @version = "0.1" @description = "nopCommerce is an open source e-commerce solution that contains both a catalog frontend and an administration tool backend. nopCommerce is a fully customizable shopping cart. It's stable and highly usable. " @website = "http://www.nopcommerce.com/" # Google results as at 2011-03-14 # # 422 results for "powered by nopCommerce" "You have no items in your shopping cart." # Dorks # @dorks = [ '"powered by nopCommerce" "You have no items in your shopping cart."' ] # Matches # @matches = [ # GHDB { certainty: 75, ghdb: '"powered by nopCommerce" "You have no items in your shopping cart."' }, # HTML Comment # Powered by { text: '' }, # If you have not purchased a valid "Copyright notice removal license" for nopCommerce, the copyright notice at the footer of your store must remain intact, unedited and clearly visible. # Powered by link { text: 'Powered by nopCommerce' }, # Powered by link # target _blank { text: 'Powered by nopCommerce' }, # Admin Page # Login Button { text: '' }, # Admin Page # Remember Me { text: '' }, # Admin Page # JavaScript { text: 'var LoginForm_UserNameOrEmailRequired = document.all ? document.all["LoginForm_UserNameOrEmailRequired"] : document.getElementById("LoginForm_UserNameOrEmailRequired");' }, ] end