Sha256: 68f1bd650e446391b10780160c95d17d47a85ff10d947b3fc3c67b31d995f491
Contents?: true
Size: 1.54 KB
Versions: 6
Compression:
Stored size: 1.54 KB
Contents
# frozen_string_literal: true ## # 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. # http://www.morningstarsecurity.com/research/whatweb ## WhatWeb::Plugin.define "Mirapoint-Email-Appliance" do @author = "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 # def passive(target) m = [] # HTTP Server Header if /^Mirapoint/.match?(target.headers["server"]) m << { name: "HTTP Server Header" } # Version Detection if target.headers["server"] =~ /^Mirapoint\/([^\s]+)$/ m << { version: $1.to_s } end end # Return passive matches m end end
Version data entries
6 entries across 6 versions & 1 rubygems