Sha256: a1ac1541576a72cfd1c8e304d54dd7e83194e99acfb0250c35f9eaa1053eea66

Contents?: true

Size: 952 Bytes

Versions: 6

Compression:

Stored size: 952 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 "DynaWeb-httpd" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-08-07
  @version = "0.1"
  @description = "DynaWeb web server. Ships with Sun Microsystem's AnswerBook"
  @website = "http://www.oracle.com/"

  # More Info #
  # http://osdir.com/ml/os.solaris.sunhelp/2001-09/msg00527.html

  # ShodanHQ results as at 2011-08-07 #
  # 5 for dwhttpd

  # Passive #
  def passive(target)
    m = []

    # Version Detection # HTTP Server Header
    if target.headers["server"] =~ /^dwhttpd\/([^\s]+) \(([^\s^;^\)]+; [^\s^\)]+)\)$/
      m << { version: $1.to_s }
      m << { string: $2.to_s }
    end

    # Return passive matches
    m
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

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