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 "Kloxo-Single-Server" do # aka HyperVM aka LxAdmin
8author "Brendan Coles <bcoles@gmail.com>" # 2010-06-01
9version "0.1"
10description "Kloxo (aka HyperVM aka LxAdmin) is a fully scriptable, distributed and a 100% object oriented hosting platform"
11website "http://www.lxcenter.org/kloxo.htm"
12
13# 70 results for "Use a valid username and password to gain access to the console" -lxcenter.org @ 2010-05-09
14
15# Dorks #
16dorks [
17'"Use a valid username and password to gain access to the console" -lxcenter.org'
18]
19
20
21
22# Matches #
23matches [
24
25{ :text=>"<title> HyperVM 2.0 </title>" },
26
27{ :text=>"<title> Kloxo </title>" },
28
29# default lxadmin title",
30{ :text=>"<title> Lxadmin </title>" },
31
32# default logo html
33{ :text=>'<img id=main_logo width=84 height=23 src="/img/hypervm-logo.gif">'
34},
35
36# login text # joomla and mambo use this string but without "</b>"
37{ :certainty=>75, :text=>"Use a valid username and password to gain access to the console</b>" },
38
39# login css # fairly specific directory structure - no false positives on google
40{ :text=>'@import url("/htmllib/lib/admin_login.css");' },
41
42# fairly specific directory structure - no false positives on google
43{:name=>"login javascript",
44:text=>'<script language=javascript src="/htmllib/js/preop.js"></script>'
45},
46
47# fairly specific HTML structure - no false positives on google
48{:name=>"login form",
49:text=>'<form name=loginform action="/htmllib/phplib/" onsubmit="encode_url(loginform) ; return fieldcheck(this);" method=post>'
50}
51
52]
53
54end
55
56
57