Sha256: 6f53bcee60d6c9d32b82984f042be39f8860bacfb5d27fb8f63b3f12357983c0

Contents?: true

Size: 892 Bytes

Versions: 6

Compression:

Stored size: 892 Bytes

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 "Phorum" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-10-25
  @version = "0.1"
  @description = "Phorum - Forum - Requires PHP and MySQL"
  @website = "http://www.phorum.org/"

  # Google results as at 2011-10-25 #
  # 364 for "This forum is powered by Phorum."

  # Dorks #
  @dorks = [
    '"This forum is powered by Phorum."'
  ]

  # Matches #
  @matches = [

    # Powered by link
    { regexp: /powered by <a href="http:\/\/www\.phorum\.org\/"( target="_blank")?>Phorum<\/a>\./ },

    # HTML Comment
    { certainty: 75, text: '<!-- end of div id=user-info -->' },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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