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
|
##
# 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.
# http://www.morningstarsecurity.com/research/whatweb
##
Plugin.define "WWWPhoto" do
author "Brendan Coles <bcoles@gmail.com>" # 2011-01-29
version "0.1"
description "WWWPhoto is a tag based web photo gallery for PHP5 with GD-Library and MySQL or PostgreSQL. Since release 0.1.0 the navigation on the user view is Ajax driven by using the JSON implementation for PHP from Michal Migurski, Matt Knapp and Brett Stimmerman (http://pear.php.net/pepr/pepr-proposal-show.php?id=198)"
website "http://www.pburkhalter.net/wwwphoto.php"
# Matches #
matches [
# Default Meta Generator
{ :text=>' <meta name="generator" content="WWWPhoto cvshead"> <!-- leave this for stats -->' },
# Powered by text
{ :text=>'<a href="http://www.pburkhalter.net/wwwphoto.php">powered by wwwphoto-cvshead</a>' },
# Default JavaScript
{ :text=>"http_navbar.open('get','navbar.rpc.php?user='+GLOBAL_USER+'&tag='+GLOBAL_TAG+'&id='+GLOBAL_ID+'&marked='+marked+'×tamp='+new Date().getTime());" },
# Default HTML Comment
{ :text=>"<!-- sorry joshua, one little, small table is a must have :-) -->" },
]
end
|