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# http://www.morningstarsecurity.com/research/whatweb
6##
7# Version 0.2 # 2011-02-19 #
8# Updated version detection
9##
10Plugin.define "WhiteBoard" do
11author "Brendan Coles <bcoles@gmail.com>" # 2010-08-15
12version "0.2"
13description "WhiteBoard is a fast, powerful, and free open source discussion board solution."
14website "http://sarosoftware.com/"
15
16# Google rsults as at 2010-08-15 #
17# 21 for "powered by Whiteboard"
18
19
20
21# Matches #
22matches [
23
24# Copyright text
25{ :text=>'			&copy; <a href="http://www.powerwd.com">SaroSoftware</a><br />', :certainty=>75 },
26
27# Version Detection # Powered by text
28{ :version=>/Powered By WhiteBoard ([\d\.]+)<br \/>/ },
29
30# Version Detection # Powered by text HTML
31{ :version=>/Powered By WhiteBoard <span id="version">([\d\.]+)<\/span><br \/>/ },
32
33]
34
35end
36
37