Sha256: f5f74cebdfe30a3988f5813a4816e76d8c8109e7beb83c06a306566f9993cf23

Contents?: true

Size: 1.3 KB

Versions: 6

Compression:

Stored size: 1.3 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-23 # Andrew Horton
# Moved patterns from passive function to matches[]
##
WhatWeb::Plugin.define "NaviCOPA" do
  @author = "Brendan Coles <bcoles@gmail.com>" # 2011-03-25
  @version = "0.2"
  @description = "The NaviCOPA Web Server Software installs on any version of the Microsoft Windows operating system from 98 and up, including Windows Vista, and automatically configures itself for instant HTTP access. NaviCOPA does not limit the number of connections and comfortably serves 1000's of simultaneous connections"
  @website = "http://www.navicopa.com/"

  # ShodanHQ results as at 2011-03-25 #
  # 4 for InterVations

  @matches = [

    # HTTP Server Header
    { regexp: /^InterVations NaviCOPA/, search: "headers[server]" },

    # Version Detection # HTTP Server Header
    { version: /^InterVations NaviCOPA Version ([\d\.]+) [\d]{1,2}[a-z]{2} [A-Z][a-z]+ [\d]{4}$/, search: "headers[server]" },

    # Set-Cookie
    { name: "NaviCopaSession Cookie", regexp: /^NaviCopaSession/, search: "headers[set-cookie]" },

  ]
end

Version data entries

6 entries across 6 versions & 1 rubygems

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