Sha256: 57cdc1b83413259152a2d57a5f1bc257eaf0d132b6ded2dfe19c7586d591a6df

Contents?: true

Size: 1.3 KB

Versions: 6

Compression:

Stored size: 1.3 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 "Exponent-CMS" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2010-10-15
  @version = "0.1"
  @description = "Out of thebox, Exponent Content Management System touts a feature-rich assortment of tools to assist you in your online content management. Requirements: Apache 1.3, 2.0, or 2.2, PHP 4.4 or later, PHP GD Image Library extension, MySQL 4.1.22 or later"
  @website = "http://www.exponentcms.org/index.php?section=116"

  # Google results as at 2010-10-15 #
  # 94 for "powered by Exponent CMS"

  # Dorks #
  @dorks = [
    '"powered by Exponent CMS"'
  ]

  @matches = [

    # Version detection # Version detection
    { version: /<meta name="Generator" content="Exponent Content Management System - ([^\"]+)"/ },

    # Meta generator
    { text: '<meta name="Generator" content="Exponent Content Management System' },

    # Powered by text
    { text: 'Powered by <a href="http://www.exponentcms.org">Exponent CMS</a>' },
    { text: '<a href="http://www.exponentcms.org">Powered by Exponent CMS</a>' },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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