Sha256: 97599750e187c673702a6cef3f70f8726549da15bee7154cfc1b3a8d87e36678

Contents?: true

Size: 1.22 KB

Versions: 6

Compression:

Stored size: 1.22 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 "Oracle-Fusion-Middleware" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2012-07-23
  @version = "0.1"
  @description = "Oracle Fusion Middleware (OFM)"
  @website = "http://www.oracle.com/au/products/middleware/index.html"
  # More Info # http://en.wikipedia.org/wiki/Oracle_Fusion_Middleware

  # ShodanHQ results as at 2012-07-23 #
  # 24 for Oracle Fusion Middleware

  # Matches #
  @matches = [

    # Title
    { text: '<title>Welcome to Oracle Fusion Middleware</title>' },

    # StyleSheet
    { text: '<link href="css/fmw_bottom_area.css" rel="stylesheet" type="text/css">' },

    # div id="welcome_text" # Version Detection
    { version: /<div id="welcome_text">TO ORACLE<strong> FUSION MIDDLEWARE ([^\s^<]+)<\/strong> <\/div>/ },

    # HTTP Server Header
    { search: "headers[server]", regexp: /^Oracle-Fusion-Middleware/ },
    { search: "headers[server]", version: /^Oracle-Fusion-Middleware\/([^\s]+ \([^\)]+\))/ },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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