Sha256: 10c38af2bf0d954b4dfb0cef9db3541904d86f99d0a9c118f3861c276801f864

Contents?: true

Size: 1.6 KB

Versions: 6

Compression:

Stored size: 1.6 KB

Contents

# frozen_string_literal: true

##
# 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
##
WhatWeb::Plugin.define "MyBB" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-02-26
  @version = "0.1"
  @description = "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."
  @website = "http://mybb.com/"

  # Google results as at 2011-02-26 #
  # 289 for "Powered By MyBB"

  # Dorks #
  @dorks = [
    '"Powered By MyBB"'
  ]

  # Matches #
  @matches = [

    # HTML Comments
    { text: '				<!-- MyBB is free software developed and maintained by a volunteer community. ' },
    { text: '				<!-- You may NOT remove, modify or hinder the visibility of the MyBB copyright at any time.' },
    { text: '<!-- The following piece of code allows MyBB to run scheduled tasks. DO NOT REMOVE --><img' },

    # Powered by text
    { 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>./ },

    # Simple powered by text
    { text: 'Powered By <a href="http://www.mybboard.com" target="_blank">MyBB</a>' },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

Version Path
simple_whatweb-0.4.1 lib/whatweb/plugins/mybb.rb
simple_whatweb-0.4.0 lib/whatweb/plugins/mybb.rb
simple_whatweb-0.3.0 lib/whatweb/plugins/mybb.rb
simple_whatweb-0.2.1 lib/whatweb/plugins/mybb.rb
simple_whatweb-0.2.0 lib/whatweb/plugins/mybb.rb
simple_whatweb-0.1.0 lib/whatweb/plugins/mybb.rb