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
|
##
# 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 "Puridiom"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2011-07-14
]
version "0.1"
description "Puridiom - eProcurement software"
website "http://www.puridiom.com/"
# Google results as at 2011-07-14 #
# 5 for intitle:"Enabling Self-Service Procurement" "Loading Page"
# Dorks #
dorks [
'intitle:"Enabling Self-Service Procurement" "Loading Page"'
]
# Matches #
matches [
# Title
{ :text=>'<TITLE>Puridiom, Enabling Self-Service Procurement</TITLE>' },
# Title # Xpress
{ :string=>"Xpress", :text=>'<TITLE>Puridiom Xpress, Enabling Self-Service Procurement</TITLE>' },
# iframe id="getInfoFrame"
{ :text=>'<iframe id="getInfoFrame" name="getInfoFrame" src="/puridiom/system/processing.jsp"' },
# Loading Page
{ :text=>'<tr><td width=100% align=center valign=top><br><b>Loading Page... Please wait.</b><br><br><br><img src="/puridiom' },
# Version Detection # Title
{ :version=>/<TITLE>Puridiom ([\d\.]+), Enabling Self-Service Procurement<\/TITLE>/ },
# Meta Description
{ :text=>'<META NAME="Description" Content="/puridiom/system/header.jsp">' },
# Meta Description # Xpress
{ :string=>"Xpress", :text=>'<META NAME="Description" Content="/puridiomx/system/header.jsp">' },
]
end
|