mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
49 lines
1.5 KiB
Ruby
49 lines
1.5 KiB
Ruby
##
|
|
# 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
|
|
|