1##
2# This file is part of WhatWeb and may be subject to
3# redistribution and commercial restrictions. Please see the WhatWeb
4# web site for more information on licensing and terms of use.
5# http://www.morningstarsecurity.com/research/whatweb
6##
7Plugin.define "eGroupWare" do
8author "Brendan Coles <bcoles@gmail.com>" # 2011-01-06
9version "0.1"
10description "Egroupware is a web based software for team collaboration, central data management and CRM: email client, online calendar, contact and task management, project and file management, trouble ticket system, synchronization."
11website "http://www.egroupware.org/"
12# Manual: http://www.stylite.de/egroupware_manuals
13
14# 25 results for inurl:"phpgw_forward" ext:php @ 2011-01-06
15
16# Dorks #
17dorks [
18'inurl:"phpgw_forward" ext:php'
19]
20
21
22
23# Matches #
24matches [
25
26	# Default meta author
27	{ :text=>'<meta name="author" content="eGroupWare http://www.egroupware.org" />' },
28
29	# Version Detection # PoweredBy footer
30	{ :version=>/<div id="divPoweredBy>[^<]*<a href="http:\/\/www.egroupware.org">eGroupWare<\/a> version ([\d\.]+)<\/span><\/div>/ },
31
32	# Version Detection # PoweredBy footer
33	{ :version=>/<a href="http:\/\/www.egroupware.org" target="_blank">eGroupWare<\/a> ([\d\.]+)[^<]*<\/div>/ },
34
35	# Login page # session expired # french
36	{ :text=>'<div align="center"><font color="#FF0000">Votre session n\'est pas valide.</font></div>', :string=>"Language:French" },
37
38	# Login page # session expired # english
39	{ :text=>'<div id="loginCdMessage"><font color="red">Your session could not be verified.</font></div>', :string=>"Language:English" },
40
41	# Login Page # password.png md5sum
42	{ :md5=>"628381f4ef8ee6d35665e002ffa61bb0", :url=>"phpgwapi/templates/idots/images/password.png" },
43
44	# Default favicon
45	{ :md5=>"f6e9339e652b8655d4e26f3e947cf212", :url=>"phpgwapi/templates/idots/images/favicon.ico" },
46
47	# Login Page # Default Title
48	{ :text=>"<title>EGroupware [Login]</title>" },
49
50	# meta copyright
51	{ :string=>/<meta name="copyright" content="eGroupWare http:\/\/www.egroupware.org \(c\) ([\d\.]+)" \/>/i },
52
53	# 1.3 - 1.6 # HTML Comment
54	{ :text=>"<!-- we don't need body tags anymore, do we?) we do!!! onload!! LK -->", :version=>"1.3 - 1.6" },
55
56	# Expresso Livre # powered by eGroupWare
57	{ :text=>'<META NAME="description" CONTENT="Expresso Livre login screen, working environment powered by eGroupWare">', :module=>"Expresso Livre" },
58	{ :text=>'<META NAME="keywords" CONTENT="Expresso Livre login screen, eGroupWare, groupware, groupware suite">', :module=>"Expresso Livre" },
59	{ :text=>'<br><a title="eGroupWare" target="_blank" href="http://www.egroupware.org/"> Powered by eGroupWare </a></div></td>', :module=>"Expresso Livre" },
60	{ :text=>"<TITLE>Expresso Livre - Login</TITLE>", :module=>"Expresso Livre" }
61
62]
63
64end
65
66
67