mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
46 lines
1.2 KiB
Ruby
46 lines
1.2 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 "MeetingPlaza"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-07-21
|
|
"Andrew Horton", # v0.2 # 2016-04-21 # Moved patterns from passive function to matches[].
|
|
]
|
|
version "0.2"
|
|
description "MeetingPlaza Distance Conference Service for internet conferencing, meeting, presentations, seminars, collaboration, events, and training."
|
|
website "http://www.meetingplaza.com/e/"
|
|
|
|
# ShodanHQ results as at 2011-07-21 #
|
|
# 20 for InterSpace HTTP Tunneling
|
|
|
|
# Google results as at 2011-07-21 #
|
|
# 5 for "Hello. I'm MeetingPlaza HTTP Tunneling Server." +Date
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'"Hello. I\'m MeetingPlaza HTTP Tunneling Server." "Date"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
{ :certainty=>25, :text=>'<html> <body> Hello. I\'m MeetingPlaza HTTP Tunneling Server.<br>Date: ' },
|
|
|
|
# Version Detection # HTTP Server Header
|
|
{ :version=>/^InterSpace HTTP Tunneling\/([^\s]+)$/, :search=>"headers[server]" },
|
|
|
|
# HTTP Server Header
|
|
{ :regexp=>/^InterSpace HTTP Tunneling/, :search=>"headers[server]" },
|
|
|
|
]
|
|
|
|
|
|
end
|
|
|