1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42
|
##
# This file is part of WhatWeb and may be subject to
# redistribution and commercial restrictions. Please see the WhatWeb
# web site for more information on licensing and terms of use.
# https://morningstarsecurity.com/research/whatweb
##
Plugin.define do
name "GuppY"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2010-08-06
# v0.2 # 2011-02-10 # Updated version detection.
]
version "0.2"
description "An easy, free web portal, GuppY will allow you to generate very easily a complete and interactive web site. It requires no database."
website "http://www.freeguppy.org/?lng=en"
# Google results as at 2010-08-06 #
# 326 for "Powered by GuppY" "CeCILL Free License"
# Dorks #
dorks [
'"Powered by GuppY" "CeCILL Free License"'
]
# Matches #
matches [
# Meta Generator
{ :text=>'<meta name="Generator" content="GuppY">' },
# Version Detection # Copyright Footer HTML
{ :version=>/<div class="foot"><span class='copyright'> <a class='copyright' href='http:\/\/www.freeguppy.org\/' title='GuppY site' target='_blank'> Site powered by GuppY v([\d\.]+) <\/a>/ },
# Version Detection # HTML Comment
{ :version=>/ <!--\[ GuppY v([\d\.]+) CeCILL Copyright \(C\) [\d]{4}\-[\d]{4} by Laurent Duveau \- http:\/\/www.freeguppy.org\/ \]-->/ },
]
end
|