File: Atmail-WebMail.rb

package info (click to toggle)
whatweb 0.4.8~git20120606-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 7,956 kB
  • sloc: ruby: 53,738; sh: 577; makefile: 34
file content (59 lines) | stat: -rw-r--r-- 2,078 bytes parent folder | download
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
##
# 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
##
# Version 0.2 # 2011-01-07 #
# Updated version detection method
# Added MailServer detection
##
Plugin.define "Atmail-WebMail" do
author "Brendan Coles <bcoles@gmail.com>" # 2010-09-26
version "0.2"
description "Atmail allows users to access IMAP Mailboxes on any server of your choice. You and your users can experience webmail via a fluid, intuitive interface that excels aesthetically and functionally; a benchmark that very few webmail clients have achieved. - homepage: http://www.atmail.com/webmail-client/"

# Google results as at 2010-09-26 #
# 3 results for "powered by Atmail WebMail"

# Dorks #
dorks [
'"powered by Atmail WebMail"'
]

# Examples #
examples %w|
a6demo.atmail.com
atmail6.datawave.net.au/index.php/admin/
demo.atmail.com
webmail.uo.edu.cu/wclient/rect/index.php
|

# Matches #
matches [

	# Login page # Default title
	{ :text=>'<title>Acceder a UOWebmail</title>' },

	# Login page # UO # Powered by text
	{ :text=>"<a href='http://atmail.com/webmail-client/' title='Webmail client' target='_blank'>Powered by Atmail Webmail UO</a>", :version=>"UO" },

	# Login page # Powered by text
	{ :regexp=>/<a href="http:\/\/www.atmail.com[\/]*" target="_blank">Powered by Atmail[\s]*<\/a>/ },

	# Login page # Expand options JavaScript / HTML
	{ :text=>'<td class="more"><a href="javascript:ExpandOptions()"><img src="imgs/login-more.gif" alt="more" border="none"></a></td>' },

	# Version Detection # Login page # Default title
	{ :version=>/<title>Atmail ([\d\.]+) - Login Page<\/title>/ },

	# Version Detection # Login page # Powered by text
	{ :version=>/<a href="http:\/\/www.atmail.com\/" target="_blank">Powered by Atmail ([\d\.]+)/ },

	# MailServer Detection # Login Page # Input box HTML
	{ :string=>/<input id="Mailserverinput" class="input" type="text" name="MailServer" value="([^>]*)"/ },

]

end