"Fossies" - the Fresh Open Source Software Archive 
Member "WhatWeb-0.5.5/plugins/aicart.rb" (15 Jan 2021, 1183 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 "AiCart"
9 authors [
10 "Brendan Coles <bcoles@gmail.com>", # 2011-06-19
11 ]
12 version "0.1"
13 description "AiCart shopping cart software is created in PHP and uses a simple template structure, makes it very flexible and easy to modify. The data in AiCart is stored in a MySQL database."
14 website "http://www.aicart.ca/"
15
16 # 17 for inurl:"/store.php?action=view_product pid="
17
18 # Dorks #
19 dorks [
20 'inurl:"/store.php?action=view_product pid="'
21 ]
22
23
24
25 # Matches #
26 matches [
27
28 # login.php
29 { :text=>'" for = "l_password">Password <span class="req">*</span></label>' },
30 { :text=>'<input id = "l_password" name = "l_password" class = "field text medium" type = "password" maxlength = "255" value = "" />' },
31 { :text=>'<input id="l_remember_me" name="l_remember_me" class = "field checkbox" type = "checkbox" value = "1" />' },
32 { :text=>'<input name="APP_authenticate" type="hidden" id="APP_authenticate" value="frmLogin" />' },
33
34 ]
35
36 end
37