"Fossies" - the Fresh Open Source Software Archive 
Member "WhatWeb-0.5.5/plugins/acontent.rb" (15 Jan 2021, 1059 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 "AContent"
9 authors [
10 "Brendan Coles <bcoles@gmail.com>", # 2010-09-17
11 ]
12 version "0.1"
13 description "AContent is an open source learning content authoring system and respository used to create interoperable, accessible, adaptive Web-based learning content."
14 website "http://www.atutor.ca/acontent/"
15
16 # Google results as at 2010-09-17 #
17 # 1 for intitle:"AContent: Learning Content Repository:"
18
19 # Dorks #
20 dorks [
21 'intitle:"AContent: Learning Content Repository:"'
22 ]
23
24
25
26 matches [
27
28 # Default title
29 { :text=>'<title>AContent: Learning Content Repository:' },
30
31 # Login page
32 { :text=>'<dt><span class="required" title="Required Field">*</span><label for="login">Login Name or Email</label></dt>' },
33
34 # Default Favicon
35 { :md5=>"28c34462a074c5311492759435549468", :url=>"/favicon.ico" },
36
37 ]
38
39
40 end
41