Sha256: d0e8f6134bc50ed6bc96c97d2657dce063db8bccdbee4358c68d9f77d093e81f

Contents?: true

Size: 1.34 KB

Versions: 6

Compression:

Stored size: 1.34 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 "QuesCom-Qportal" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-05-30
  @version = "0.1"
  @description = "Qportal web interface for QuesCom telephony devices"
  @website = "http://www.quescom.com/products.asp"

  # ShodanHQ results as at 2011-05-30 #
  # 842 for OctoWebSvr

  # Matches #
  @matches = [

    # head profile="http://www.quescom.com"
    { text: '<head profile="http://www.quescom.com">' },

    # Frameset # src="/cticall/cticall_close.asp"
    { url: "/userframes.asp", text: '<FRAME src="/cticall/cticall_close.asp" name="cticlose" frameborder="no" scrolling="no" marginwidth="0" marginheight="0">' },

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

    # Aggressive # /Oem/topright.gif
    { url: "/Oem/topright.gif", md5: "8ddc6366869cf61044d7bc4b21ca1b1e" },

  ]

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

    # HTTP Server Header
    if /^OctoWebSvr\/COM$/.match?(target.headers["server"])
      m << { name: "HTTP Server Header" }
    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/quescom-qportal.rb
simple_whatweb-0.4.0 lib/whatweb/plugins/quescom-qportal.rb
simple_whatweb-0.3.0 lib/whatweb/plugins/quescom-qportal.rb
simple_whatweb-0.2.1 lib/whatweb/plugins/quescom-qportal.rb
simple_whatweb-0.2.0 lib/whatweb/plugins/quescom-qportal.rb
simple_whatweb-0.1.0 lib/whatweb/plugins/quescom-qportal.rb