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
|
##
# 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 "OpenI"
authors [
"Brendan Coles <bcoles@gmail.com>", # 2011-08-04
]
version "0.1"
description "OpenI is a Business Intelligence web application for on-demand or SaaS deployments. OpenI enables simple and clean data visualization from OLAP and RDBMS, so users can intuitively build and publish interactive reports, analyses, and dashboards."
website "http://openi.org/"
# Google results as at 2011-08-04 #
# 4 for "Openi Intelligence Portal" +Username +Password
# Dorks #
dorks [
'"Openi Intelligence Portal" "Username" "Password"'
]
# Matches #
matches [
# Version Detection
{ :version=>/<span class="big-title">Openi ([^\s^<]+)<\/span><br/ },
# Product Detection
{ :string=>/<span class="big-title">Openi-(Jasper)<\/span><br/ },
]
# Passive #
passive do
m=[]
# Version Detection
if @body =~ /<span class="big-subtitle">Openi Intelligence Portal<\/span>/
m << { :name=>"big-subtitle" }
if @body =~ /<td align="right" style="font-size: 11px;">([^&^<]+) <\/td>/
m << { :version=>"#{$1}" }
end
end
# Return passive matches
m
end
end
|