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##
7Plugin.define "MyBB" do
8author "Brendan Coles <bcoles@gmail.com>" # 2011-02-26
9version "0.1"
10description "MyBB is a powerful, efficient and free forum package developed in PHP and MySQL. MyBB has been designed with the end users in mind, you and your subscribers. Full control over your discussion system is presented right at the tip of your fingers, from multiple styles and themes to the ultimate customization of your forums using the template system."
11website "http://mybb.com/"
12
13# Google results as at 2011-02-26 #
14# 289 for "Powered By MyBB"
15
16# Dorks #
17dorks [
18'"Powered By MyBB"'
19]
20
21
22
23# Matches #
24matches [
25
26# HTML Comments
27{ :text=>'				<!-- MyBB is free software developed and maintained by a volunteer community. ' },
28{ :text=>'				<!-- You may NOT remove, modify or hinder the visibility of the MyBB copyright at any time.' },
29{ :text=>'<!-- The following piece of code allows MyBB to run scheduled tasks. DO NOT REMOVE --><img' },
30
31# Powered by text
32{ :regexp=>/Powered By <a href="http:\/\/(mybb.com\/|www.mybboard.net)" target="_blank">MyBB<\/a>, &copy; 2002-20[\d]{2} <a href="http:\/\/(mybb.com\/|www.mybboard.net)" target="_blank">MyBB Group<\/a>./ },
33
34# Simple powered by text
35{ :text=>'Powered By <a href="http://www.mybboard.com" target="_blank">MyBB</a>' },
36
37]
38
39end
40
41
42