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
|
##
# 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.
# https://morningstarsecurity.com/research/whatweb
##
Plugin.define do
name "ManageEngine-Applications-Manager"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2012-08-04
]
version "0.1"
description "ManageEngine Applications Manager - monitoring software - includes server monitoring, application server monitoring, database monitoring, web services monitoring, virtualization monitoring, cloud monitoring"
website "http://www.manageengine.com/products/applications_manager/"
# Google results as at 2012-08-04 #
# 11 for intitle:"Applications Manager Login Screen" "Applications Manager" "Number of Monitor"
# 2 for inurl:"webclient/common/jsp/home.jsp"
# Dorks #
dorks [
'intitle:"Applications Manager Login Screen" "Applications Manager" "Number of Monitor"'
]
# Matches #
matches [
# HTML Comment
{ :text=>'<!-- This comment is for Instant Gratification to work applications.do -->' },
# JavaScript
{ :text=>'<SCRIPT LANGUAGE="JavaScript1.2" SRC="/template/appmanager.js"></SCRIPT>' },
# Title
{ :text=>'<title>Applications Manager Login Screen</title>' },
# Build Version Detection # Login Page
{ :version=>/<td>Applications Manager \((Build No:[\d]+)\) Number of Monitor\(s\) : / },
# images/am_logo.gif
{ :url=>"images/am_logo.gif", :md5=>"4454cf4db9355b0e26b98cc354213c56" },
]
end
|