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
|
##
# 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 "EMC-Documentum-Webtop"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2011-07-14
]
version "0.1"
description "EMC Documentum Webtop is a browser-based interface that provides access to the EMC Documentum repository and content management services."
website "http://www.emc.com/products/detail/software2/webtop.htm"
# 40 for "Login Name" Repository Webtop intitle:login
# 21 for "Login Name" Repository Webtop intitle:login inurl:component
# Dorks #
dorks [
'"Login Name" Repository Webtop intitle:login inurl:component'
]
# Matches #
matches [
# body
{ :certainty=>75, :text=>"<body marginwidth='0' topmargin='40' bottommargin='0' class='contentBackground' leftmargin='0' rightmargin='0' marginheight='40'>" },
# select name='Login_docbase_0'
{ :text=>"<select name='Login_docbase_0' id='DocbaseName' title=\"Repository\" size='0' class=defaultDropdownListStyle onchange='setKeys(event);" },
# Repository span
{ :text=>'<td scope="row" align=\'right\' class="fieldlabel" height="30"><span class=\'defaultLabelStyle\'>Repository</span></td><td class="defaultcolumnspacer">: </td>' },
# td nowrap class="logintitletext"
{ :text=>'<td nowrap class="logintitletext" height="23" valign="top"><span class=\'dialogTitle\'>Webtop Login' },
# JavaScript g_virtualRoot
{ :text=>'<script type="text/javascript">var g_virtualRoot = "/webtop";</script>' },
# input name='MyLogin_username_0'
{ :text=>"<td><input type='text' name='MyLogin_username_0' id='LoginUsername' title=\"Login Name\" size='40' onkeypress=\"handleKeyPress(event)\"></td>" },
# Redirect Page # body onload
{ :regexp=>/<script type="text\/javascript" src='\/webtop\/index\.js'><\/script>[\s]+<\/head>[\s]+<body onload='doRedirect\("\/component\/main"\)'>[\s]+<\/body>[\s]+<\/html>/ },
# Version Detection
{ :version=>/<div id="logo"><span class='defaultLabelStyle'>Webtop<\/span>[\s]? <span class='dialogTitleVersion'>([^<]+)<\/span>/ },
]
end
|