mirror of
https://github.com/urbanadventurer/WhatWeb
synced 2026-06-21 14:12:19 +00:00
53 lines
1.9 KiB
Ruby
53 lines
1.9 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://www.morningstarsecurity.com/research/whatweb
|
|
##
|
|
Plugin.define do
|
|
name "Oracle-Primerva"
|
|
authors [
|
|
"Brendan Coles <bcoles@gmail.com>", # 2012-07-13
|
|
]
|
|
version "0.1"
|
|
description "Enterprise Project Portfolio Management (EPPM) solutions"
|
|
website "http://www.oracle.com/oms/eppm/index.html"
|
|
|
|
# ShodanHQ results as at 2012-07-13 #
|
|
# 2 for exponline/logon.jsp
|
|
|
|
# Google results as at 2012-07-13 #
|
|
# 21 for intitle:"Primavera Contract Management" "Oracle is a registered trademark of Oracle Corporation and/or its affiliates." "Loading Java Plugin and Security Certificate"
|
|
# 10 for inurl:"exponline/logon.jsp" intitle:"Primavera Contract Management"
|
|
|
|
# Dorks #
|
|
dorks [
|
|
'intitle:"Primavera Contract Management" "Oracle is a registered trademark of Oracle Corporation and/or its affiliates." "Loading Java Plugin and Security Certificate"',
|
|
'inurl:"exponline/logon.jsp" intitle:"Primavera Contract Management"'
|
|
]
|
|
|
|
|
|
|
|
# Matches #
|
|
matches [
|
|
|
|
# Redirect Page # index.html # HTML Comment # Year Detection
|
|
{ :string=>/<!-- @#\$ Copyright Start\s+. 1999 - (20[\d]{2}) Primavera Systems, Inc\. All rights reserved\./ },
|
|
|
|
# HTML Comment
|
|
{ :text=>'<!-- use the default style sheet only.... we do not know the users locale at this time -->' },
|
|
|
|
# div class="IntroAreaBuildId" # Version Detection # 14.x
|
|
{ :version=>/<div class="IntroAreaBuildId" id="BuildId">Version ([^,^\s]+, Build \d+)( )*<\/div>/ },
|
|
|
|
# div id="BuildId" # Version Detection # <= 13.x
|
|
{ :version=>/<div align="right" id="BuildId">Version ([^,^\s]+, Build \d+)( )*<\/div>/ },
|
|
|
|
# img/process_meter.gif
|
|
{ :text=>'<img src="img/process_meter.gif" border=0 id="progressimage"><br><br>Loading Java Plugin and Security Certificate' },
|
|
|
|
]
|
|
|
|
end
|
|
|