"Fossies" - the Fresh Open Source Software Archive 
Member "WhatWeb-0.5.5/plugins/advanced-image-hosting-script.rb" (15 Jan 2021, 1495 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 "Advanced-Image-Hosting-Script"
9 authors [
10 "Brendan Coles <bcoles@gmail.com>", # 2010-08-30
11 # v0.2 # Updated regex and version detection.
12 ]
13 version "0.2"
14 description "AIHS is a highly-flexible advanced image hosting solution for anyone who wants to offer an image hosting services of any kind."
15 website "http://yabsoft.com/aihs-feature.php"
16
17 # 2 results for "Welcome to install Advanced Image Hosting Script" @ 2010-08-30
18 # 1 result for "Powered by Advanced Image Hosting Script" @ 2010-08-30
19
20
21 matches [
22
23 # Admin page # Default CSS
24 { :text=>' .title { font-size: 10px; font-weight: bold; line-height: 150%; color: #FFFFFF; height: 26px; background-image: url(./tile_back.gif) }' },
25
26 # Admin page # Default title HTML
27 { :text=>' <td colspan=2 align=center><h3>Advanced Image Host Script</h3></td>' },
28
29 # Version detection # Powered by text
30 { :version=>/Powered by: <B><a href="http:\/\/yabsoft.com">AIH v([\d\.]+)<\/a><\/B>/ },
31
32 # Version detection # Install page
33 { :version=>/<center><b>Welcome to install AIHS Script ([\d\.]+)<\/b><\/center>/ },
34 { :version=>/<tr><td class=info width=100%>Welcome to install Advanced Image Hosting Script Pro ([\d\.]+) on your server<\/td><\/tr>/ },
35
36 ]
37
38 end
39