1##
2# This file is part of WhatWeb and may be subject to
3# redistribution and commercial restrictions. Please see the WhatWeb
4# web site for more information on licensing and terms of use.
5# http://www.morningstarsecurity.com/research/whatweb
6##
7# Version 0.2 # 2016-04-23 # Andrew Horton
8# Moved patterns from passive function to matches[]
9##
10Plugin.define "NaviCOPA" do
11author "Brendan Coles <bcoles@gmail.com>" # 2011-03-25
12version "0.2"
13description "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"
14website "http://www.navicopa.com/"
15
16# ShodanHQ results as at 2011-03-25 #
17# 4 for InterVations
18
19matches [
20
21	# HTTP Server Header
22	{ :regexp=>/^InterVations NaviCOPA/, :search=>"headers[server]" },
23
24	# Version Detection # HTTP Server Header
25	{ :version=>/^InterVations NaviCOPA Version ([\d\.]+) [\d]{1,2}[a-z]{2} [A-Z][a-z]+ [\d]{4}$/, :search=>"headers[server]" },
26
27	# Set-Cookie
28	{  :name=>"NaviCopaSession Cookie", :regexp=>/^NaviCopaSession/, :search=>"headers[set-cookie]" },
29
30]
31
32
33end
34
35