1##
2# This file is part of WhatWeb and may be subject to
3# redistribution and commercial restrictions. Please see the WhatWeb
4# web site for more information on licensing and terms of use.
5# http://www.morningstarsecurity.com/research/whatweb
6##
7Plugin.define "Novell-Sentinel-Log-Manager" do
8author "Brendan Coles <bcoles@gmail.com>" # 2012-07-15
9version "0.1"
10description "Novell Sentinel Log Manager - log management solution"
11website "http://www.novell.com/promo/slm/slm25.html"
12
13# Google results as at 2012-07-15 #
14# 2 for inurl:"novelllogmanager/views/logManager.html"
15
16# Dorks #
17dorks [
18'inurl:"novelllogmanager/views/logManager.html"'
19]
20
21
22
23# Matches #
24matches [
25
26# Login Page # Version Detection
27{ :version=>/<h1 id="site-logo" class="logo" title="Novell Sentinel Log Manager"><span class="accessible">Novell Identity Audit<\/span><\/h1>\s+<p class="publisher">Novell<\/p>\s+<p class="version">Version ([^>]+)<\/p>/ },
28
29# Supported browsers message
30{ :text=>'<p class="content">Novell Sentinel Log Manager supports Firefox 3 (works best on 3.6) and Internet Explorer 8 (works best on 8.0)</p>' },
31
32# Redirect Page
33{ :text=>'<META HTTP-EQUIV="refresh" CONTENT="0;URL=/novelllogmanager">' },
34
35]
36
37end
38
39