Sha256: 1d0d50985f75660a97d7d25e9f02068b88e122e73e8535fe9a3ca794ccb8c4e4

Contents?: true

Size: 1.07 KB

Versions: 6

Compression:

Stored size: 1.07 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 "DSpace" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-04-22
  @version = "0.1"
  @description = "An Open Archive Initiative (OAI) - compliant open-source software released by MIT for archiving eprints and other kinds of academic content."
  @website = "http://www.dspace.org/"

  # 35 for "Powered by DSpace, version"

  # Dorks #
  @dorks = [
    '"Powered by DSpace, version"'
  ]

  # Matches #
  @matches = [

    # Meta Generator
    { text: '<meta content="DSpace" name="Generator" />' },

    # Version Detection # Meta Generator
    { version: /<meta name="Generator" content="DSpace ([\d\.]+)" \/>/ },

    # Version Detection # Powered by text
    { version: /[pP]owered by <a href="http:\/\/(www\.)?dspace\.org"[^>]*>DSpace<\/a>, version ([\d\.]+)/, offset: 1 },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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