Sha256: 5b65d4b05ec464986a432cec8195772a64e1ffbb64be6ab925d733c09700c608

Contents?: true

Size: 1.88 KB

Versions: 6

Compression:

Stored size: 1.88 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
##
# Version 0.2 # 2016-04-20 # Andrew Horton
# Moved patterns from passive function to matches[]
##
WhatWeb::Plugin.define "Home-Control-Box" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-05-23
  @version = "0.2"
  @description = "The Home Control Box is a small, powerful computer that integrates the various sensors and electronic systems in the home into one single functional system."
  @website = "http://www.homecontrolbox.com/"
  # The username is the same as the name of your Home Control Box without 'hcb-', so hcb-xxx-yyyy becomes yyy-xxxx

  # ShodanHQ results as at 2011-05-23 #
  # 15 for hcb_web
  # 15 for BoxTalk
  # Most results are from Netherlands

  @matches = [

    { regexp: /^hcb_web/, search: "headers[server]" },

    # Version Detection
    { version: /^hcb_web\/v([^\s]+) BoxTalk\/[^\s]+ SWILL\/[^\s]+ \([^\)]+\)$/, search: "headers[server]" },

    # BoxTalk Detection
    { module: /^hcb_web\/v[^\s]+ (BoxTalk\/[^\s]+) SWILL\/[^\s]+ \([^\)]+\)$/, search: "headers[server]" },

    # SWILL Detection
    { module: /^hcb_web\/v[^\s]+ BoxTalk\/[^\s]+ (SWILL\/[^\s]+) \([^\)]+\)$/, search: "headers[server]" },

    # Username Detection # WWW-Authenticate header
    { account: /^Basic realm="Home Control Box Configuration \(hcb-([a-z]{3}-[\d]{4})\)"$/, search: "headers[www-authenticate]" },

    # No Login Required
    { string: "No Login Required", text: '<frame frameborder="0" name="MGUI" src="myhcb_gui.html" scrolling="no"' },

  ]
end

# An aggressive plugin could get the device uptime, country, firmware version and owner's address from /config/general.pl if the device does not require authentication

Version data entries

6 entries across 6 versions & 1 rubygems

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