"Fossies" - the Fresh Open Source Software Archive 
Member "WhatWeb-0.5.5/plugins/airvaecommerce.rb" (15 Jan 2021, 1335 Bytes) of package /linux/www/WhatWeb-0.5.5.tar.gz:
As a special service "Fossies" has tried to format the requested source page into HTML format using (guessed) Ruby source code syntax highlighting (style:
standard) with prefixed line numbers and
code folding option.
Alternatively you can here
view or
download the uninterpreted source code file.
1 ##
2 # This file is part of WhatWeb and may be subject to
3 # redistribution and commercial restrictions. Please see the WhatWeb
4 # web site for more information on licensing and terms of use.
5 # https://www.morningstarsecurity.com/research/whatweb
6 ##
7 Plugin.define do
8 name "AirvaeCommerce"
9 authors [
10 "Brendan Coles <bcoles@gmail.com>", # 2010-08-22
11 # v0.2 # 2011-01-07 # Updated version detection method. Updated matches.
12 ]
13 version "0.2"
14 description "Airvae Commerce 3.0 is a flexible, powerful, e-commerce shopping cart software offering clients, web developers, and I.T. professionals the perfect solution to deploy sophisticated, extensible, e-commerce solutions."
15 website "http://www.airvaecommerce.com/"
16
17 # Google results as at 2010-08-22 #
18 # 43 for "powered by AirvaeCommerce" -Vulnerability
19
20 # Dorks #
21 dorks [
22 '"powered by AirvaeCommerce" -Vulnerability'
23 ]
24
25
26
27 # Matches #
28 matches [
29
30 # Default stylesheet HTML
31 { :text=>'<link href="imgs/store.css" rel="stylesheet" media="screen">' },
32
33 # 3.x # Default stylesheet HTML
34 { :text=>'<link href="/conf/minify/f=imgs/store.css&142" rel="stylesheet" media="screen">', :version=>"3.x" },
35
36 # Version Detection # Powered by footer
37 { :version=>/<a href="http:\/\/www.airvaecommerce.com">Powered by AirvaeCommerce ([\d\.]+) - E-Commerce Shopping Cart Software<\/a><br><br>/ },
38
39 ]
40
41 end
42