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 "Isolsoft-Support-Center" do
8author "Brendan Coles <bcoles@gmail.com>" # 2011-06-25
9version "0.1"
10description "Support Center is a fully automated Help Desk solution."
11website "http://www.isolsoft.com/"
12
13# 115 for "Powered by: Support Center"
14#  53 for "Powered by: Support Center" inurl:kb.php
15
16# Dorks #
17dorks [
18'"Powered by: Support Center"'
19]
20
21
22
23# Matches #
24matches [
25
26# javascript warning
27{ :text=>'<strong><font color="#FF0000">Warning! This heldesk requires a browser with javascript ' },
28
29# HTML Comment
30{ :text=>'<!-- Copyright Line: Unauthorized removal can void license -->' },
31
32# Version Detection # Powered by text
33{ :version=>/<p align="center"><font size="1">Powered by: Support Center v([^<^\s]+)<br>/ },
34
35]
36
37end
38
39