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 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
|
##
# 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
##
# Version 0.2
# removed :certainty=>100 & :name
# Version 0.3
# Uses :version=>//
Plugin.define "VBulletin" do
author "Andrew Horton"
version "0.3"
description "VBulletin is a PHP forum."
matches [
{:ghdb=>'"Powered by vBulletin" inurl:newreply.php'},
{:regexp=>/<meta name="generator" content="vBulletin/}, #"
{:certainty=>75, :regexp=>/\* vBulletin [0-9a-z.]+ CSS/},
{:name=>"vbulletin_global.js", :regexp=>/<script type="text\/javascript" src="[a-z0-9.\/]*vbulletin_global.js/},
{:certainty=>75, :text=>'vb_bullet.gif"'}, #' comment for gedit syntax hilighting
{:regexp=>/Powered by(:)? vBulletin(®)? Version/},
{:certainty=>50, :regexp=>/Copyright ©2000 - [0-9]+, Jelsoft Enterprises Ltd./},
{:version=>/Powered by(:)? vBulletin(®)? Version ([0-9a-z.]+)/, :offset=>2, :name=>"version" },
{:version=>/<meta name="generator" content="vBulletin ([0-9a-z.]+)" \/>/, :name=>"version" },
{:version=>/\* vBulletin ([0-9a-z.]+) CSS/, :name=>"version" }
]
# <meta name="generator" content="vBulletin 3.8.3" />
# <style type="text/css" id="vbulletin_css">
# <script type="text/javascript" src="clientscript/vbulletin_menu.js?v=383"></script>
# <script type="text/javascript" src="clientscript/vbulletin_md5.js?v=383"></script>
# <td class="vbmenu_control">
# // Main vBulletin Javascript Initialization
# <meta name="generator" content="vBulletin 3.7.3" />
# <meta name="generator" content="vBulletin 3.8.2" />
# <meta name="generator" content="vBulletin 3.0.0" />
# * vBulletin 3.7.3 CSS
# * vBulletin 3.8.2 CSS
# <script type="text/javascript" src="clientscript/vbulletin_global.js?v=373"></script>
# <input type="hidden" name="vb_login_md5password" />
# vb_bullet.gif
# Powered by: vBulletin Version 2.0.3<br>
# Powered by: vBulletin Version 2.3.2<br>
# Powered by vBulletin® Version 3.7.3<br />Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
# vBulletin® Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
# Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
# Powered by: vBulletin Version 3.0.0<br />Copyright ©2000 - 2009, Jelsoft Enterprises Ltd.
end
|