"Fossies" - the Fresh Open Source Software Archive 
Member "WhatWeb-0.5.5/plugins/advanced-guestbook.rb" (15 Jan 2021, 2397 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-Guestbook"
9 authors [
10 "Andrew Horton",
11 # Version 0.3
12 # using :version=>// instead of a passive plugin for version detection
13 ]
14 version "0.3"
15 description "Web guestbook script. http://johnny.ihackstuff.com/ghdb/?function=detail&id=228 Version 2.2 is vulnerable http://www.securityfocus.com/bid/10209/info."
16 website "http://proxy2.de/scripts.php"
17
18 # Dorks #
19 dorks [
20 'inurl:guestbook.php "Advanced GuestBook" "powered by phpbb"'
21 ]
22
23
24
25 # Matches #
26 matches [
27 {:certainty=>75, :ghdb=>'intitle:guestbook "advanced guestbook 2.2" powered'},
28 {:certainty=>75, :text=>"Thank you for stopping by my site. Here you can leave your mark."},
29 {:name=>"powered by", :version=>2.2, :regexp=>/<b>Advanced Guestbook 2.2<br>\s+Powered by PHP/},
30
31 {:name=>"powered by - regexp", :version=>/<a href="http:\/\/www.proxy2.de" target="_blank"><font color="#CCCCCC" size="1">(Advanced Guestbook) ([^<]+)/,
32 :offset=>1}
33 ]
34
35 # Vuln version 2.2
36 # <center><font face="Arial, Helvetica, sans-serif" color="#CCCCCC" size="1"><b>Advanced Guestbook 2.2<br>
37 # Powered by PHP & MySQL - <a href="http://www.proxy2.de" target="_blank"><font color="#CCCCCC">http://http://www.proxy2.de</font></a></b></font></center>
38
39 # Version 2.3.1
40 #<center><b><font face="Arial, Helvetica, sans-serif" color="#CCCCCC" size="1">Powered by <a href="http://www.proxy2.de" target="_blank"><font color="#CCCCCC" size="1">Advanced Guestbook 2.3.1</font></a></font></b></center>
41
42 # Version 2.3.3
43 #<center><b><font face="Arial, Helvetica, sans-serif" color="#CCCCCC" size="1"><a href="http://www.proxy2.de" target="_blank"><font color="#CCCCCC" size="1">Advanced Guestbook 2.3.3</font></a></font></b></center>
44
45 # Version 2.4.1
46 #<center><b><font face="Arial, Helvetica, sans-serif" color="#CCCCCC" size="1"><a href="http://www.proxy2.de" target="_blank"><font color="#CCCCCC" size="1">Advanced Guestbook 2.4.1</font></a></font></b></center>
47
48 # Version 2.4.3
49 #<center><b><font face="Arial, Helvetica, sans-serif" color="#CCCCCC" size="1"><a href="http://www.proxy2.de" target="_blank"><font color="#CCCCCC" size="1">Advanced Guestbook 2.4.3</font></a></font></b></center>
50
51
52
53 end
54