Sha256: 28fc93bf25b30850cb1b4377eacc31a91f023309b1d930ab9a5e65dc6635f5b3

Contents?: true

Size: 747 Bytes

Versions: 6

Compression:

Stored size: 747 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 "Nucleus" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2010-10-26
  @version = "0.1"
  @description = "Nucleus Webserver"

  # About 146037 ShodanHQ results for "server: Nucleus" @ 2010-10-26

  # HTTP Header
  def passive(target)
    m = []

    # Server
    m << { version: target.headers["server"].to_s.scan(/^[\s]*Nucleus\/([^\s^\r^\n]+)/i).flatten } if target.headers["server"].to_s =~ /^[\s]*Nucleus\/([^\s^\r^\n]+)/i

    m
  end
end

Version data entries

6 entries across 6 versions & 1 rubygems

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