mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
52 lines
1.8 KiB
Ruby
52 lines
1.8 KiB
Ruby
##
|
|
# 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.
|
|
# https://morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Visualware-MyConnection-Server"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-05-30
|
|
"Andrew Horton", # v0.2 # 2016-04-23 # Moved patterns from passive function to matches[].
|
|
]
|
|
version "0.2"
|
|
description "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."
|
|
website "http://www.myconnectionserver.com/"
|
|
# Default login: admin/admin123
|
|
|
|
# ShodanHQ results as at 2011-05-30 #
|
|
# 306 for Visualware MyConnection Server
|
|
|
|
# Google results as at 2011-05-30 #
|
|
# 25 for intitle:"MyConnection" "MyConnection Server" ("expires in"|EXPIRED)
|
|
# 30 for intitle:"MyConnection" "Visualware" ("expires in"|EXPIRED)
|
|
# 4 for intitle:"MyConnection Server Log In" "inurl:myspeed/login +Username
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'intitle:"MyConnection" "MyConnection Server" ("expires in"|EXPIRED)'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# HTML Comment
|
|
{ :text=>'<!-- Begin MyConnection Server applet -->' },
|
|
|
|
# HTTP Server Header
|
|
{ :regexp=>/^Visualware MyConnection Server/, :search=>"headers[server]" },
|
|
|
|
# HTTP Server Header # Version Detection
|
|
{ :version=>/^Visualware MyConnection Server [^\d]+ (\d\.[^\s]+)$/, :search=>"headers[server]" },
|
|
|
|
# HTTP Server Header # Edition Detection
|
|
{ :string=>/^Visualware MyConnection Server ([^\d]+) \d\.[^\s]+$/, :search=>"headers[server]" },
|
|
|
|
]
|
|
|
|
end
|
|
|