mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
34 lines
1.3 KiB
Ruby
34 lines
1.3 KiB
Ruby
##
|
|
# 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://www.morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "NextGEN-Gallery"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-03-04
|
|
]
|
|
version "0.1"
|
|
description "NextGEN Gallery is a full integrated Image Gallery plugin for WordPress with dozens of options and features."
|
|
website "http://nextgen-gallery.com"
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Default Stylesheets
|
|
{ :regexp=>/<link rel='stylesheet' id='NextGEN-css' href='[^']*\/wp-content\/themes\/default_ngg\/nggallery.css\?ver=[\d\.]+' type='text\/css' media='screen' \/>/, :string=>"Wordpress" },
|
|
{ :regexp=>/<link rel='stylesheet' id='shutter-css' href='[^']*\/wp-content\/plugins\/nextgen-gallery\/shutter\/shutter-reloaded.css\?ver=[\d\.]+' type='text\/css' media='screen' \/>/, :string=>"Wordpress" },
|
|
{ :regexp=>/<link rel='stylesheet' id='galleryview-css' href='[^']*\/wp-content\/plugins\/nggGalleryview\/galleryview.css\?ver=[\d\.]+' type='text\/css' media='screen' \/>/, :string=>"Wordpress" },
|
|
|
|
# Version Detection # Meta Generator
|
|
{ :version=>/<meta name='NextGEN' content='([\d\.]+)' \/>/, :string=>"Wordpress" },
|
|
|
|
]
|
|
|
|
end
|
|
|
|
|