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 "Sun-Java-System-Calendar-Express" do
8author "Brendan Coles <bcoles@gmail.com>" # 2012-08-26
9version "0.1"
10description "Sun Java System Calendar Server is Sun's calendar (scheduling) server."
11website "http://www.sun.com/software/products/calendar_srvr/"
12
13# Default Port # 6785
14
15# Google results as at 2012-08-26 #
16# 20 for intitle:"Sun Java[tm] System Calendar Express"
17#  8 for intitle:"Sun Java System Calendar Server Online Help"
18
19# Dorks #
20dorks [
21'intitle:"Sun Java[tm] System Calendar Express"'
22]
23
24
25
26# Matches #
27matches [
28
29# Title # Version Detection
30{ :version=>/<title>Sun Java\[tm\] System Calendar Express ([^<]+)<\/title>/ },
31
32# Frameset # Title
33{ :text=>'<TITLE>Sun Java[tm] System Calendar Express</TITLE>' },
34
35# Logo HTML
36{ :text=>'<img src="imx/login-logo.gif" width="186" height="79" alt="Sun Microsystems, Inc.">' },
37
38# /imx/login-logo.gif
39{ :url=>"/imx/login-logo.gif", :md5=>"b86a7d65b64efa500048d9fc2840c390" },
40
41]
42
43end
44
45