mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
45 lines
1.4 KiB
Ruby
45 lines
1.4 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 "Mirapoint-Email-Appliance"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2011-08-04
|
|
]
|
|
version "0.1"
|
|
description "Mirapoint Email Appliance is a Unix-like standards-compliant black-box e-mail server, with built-in anti-spam, anti-virus, webmail, POP, IMAP, calendar, and LDAP routing options available. System configuration and maintenance is done through a web interface, or through SSH or telnet access to a command line interpreter (CLI). Full access to the Unix-like Messaging Operating System (MOS) is not available. Depending on the model and configuration the appliances can be used as email routers, user mail servers, or as an all-in-one server."
|
|
website "http://www.mirapoint.com/index.php?id=products"
|
|
|
|
# More Info #
|
|
# http://en.wikipedia.org/wiki/Mirapoint_Email_Appliance
|
|
# http://www.mirapoint.com/index.php?id=ds_wp
|
|
|
|
# ShodanHQ results as at 2011-08-04 #
|
|
# 686 for Mirapoint
|
|
|
|
|
|
|
|
# Passive #
|
|
passive do
|
|
m=[]
|
|
|
|
# HTTP Server Header
|
|
if @headers["server"] =~ /^Mirapoint/
|
|
|
|
m << { :name=>"HTTP Server Header" }
|
|
|
|
# Version Detection
|
|
if @headers["server"] =~ /^Mirapoint\/([^\s]+)$/
|
|
m << { :version=>"#{$1}" }
|
|
end
|
|
end
|
|
|
|
# Return passive matches
|
|
m
|
|
end
|
|
end
|
|
|