1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
##
# 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
##
Plugin.define "Uebimiau-Webmail" do
author "Brendan Coles <bcoles@gmail.com>" # 2010-12-29
version "0.1"
description "Uebimiau Webmail"
website "http://www.uebimiau.org/download.php"
# Google results as at 2011-01-29 #
# 41 for "Uebimiau Webmail v3.2.0-2.0" -disclosure
# Dorks #
dorks [
'"Uebimiau Webmail v3.2.0-2.0" -disclosure'
]
# Matches #
matches [
# Version Detection
{ :version=>/ <td class="info">Uebimiau Webmail v([^<]{1,15})<\/td>/ },
# Install Page # Default Title
{ :text=>'<title>Uebimiau ( Installer )</title>', :module=>"Install Page" },
# Install Page # Login message
{ :text=>'<p>You are about to re-install Uebimiau Webmail on you system.<br>Thanks to log with your UebiMiau Admin ID and password to continue.</p>', :module=>"Install Page" },
# Default JavaScript HTML
{ :text=>'<script type="text/javascript" src="themes/default/js/webmail.js"></script>' },
# Default Meta Keywords
{ :text=>'<meta name="keywords" content="uebimiau,tdah,uebimiau,webmail,email,mail,client,application,pop3,php,open source,free,sourceforge,development" />', :certainty=>75 },
]
end
|