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 "Visualware-MyConnection-Server" do
11author "Brendan Coles <bcoles@gmail.com>" # 2011-05-30
12version "0.2"
13description "MyConnection Server (MCS) delivers a broad range of support managed automated and user initiated self-help connection testing and monitoring services directly via the browser to any online customer/location anywhere in the world. MCS incorporates testing solutions for critical time dependent applications such as VoIP, Video, IPTV, video conferencing."
14website "http://www.myconnectionserver.com/"
15# Default login: admin/admin123
16
17# ShodanHQ results as at 2011-05-30 #
18# 306 for Visualware MyConnection Server
19
20# Google results as at 2011-05-30 #
21# 25 for intitle:"MyConnection" "MyConnection Server" ("expires in"|EXPIRED)
22# 30 for intitle:"MyConnection" "Visualware" ("expires in"|EXPIRED)
23#  4 for intitle:"MyConnection Server Log In" "inurl:myspeed/login +Username
24
25# Dorks #
26dorks [
27'intitle:"MyConnection" "MyConnection Server" ("expires in"|EXPIRED)'
28]
29
30
31
32# Matches #
33matches [
34
35# HTML Comment
36{ :text=>'<!-- Begin MyConnection Server applet -->' },
37
38# HTTP Server Header
39{ :regexp=>/^Visualware MyConnection Server/, :search=>"headers[server]" },
40
41# HTTP Server Header # Version Detection
42{ :version=>/^Visualware MyConnection Server [^\d]+ (\d\.[^\s]+)$/, :search=>"headers[server]" },
43
44# HTTP Server Header # Edition Detection
45{ :string=>/^Visualware MyConnection Server ([^\d]+) \d\.[^\s]+$/, :search=>"headers[server]" },
46
47]
48
49end
50
51